function preprocessImage(img) {
const tensor = tf.fromPixels(img)
.resizeNearestNeighbor([224, 224]);
const croppedTensor = cropImage(tensor);
const batchedTensor = croppedTensor.expandDims(0);
return batchedTensor.toFloat().div(tf.scalar(127)).sub(tf.scalar(1));
}
我得到的错误是tf.fromPixels不是一个函数。直到两周前我都没有收到此错误,但是在运行相同的代码时突然出现了此错误。