我最近在使用tf.frompixels时遇到错误,这是我以前从未遇到过的。下面是我正在使用的代码

时间:2019-03-15 16:30:31

标签: tensorflow

      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不是一个函数。直到两周前我都没有收到此错误,但是在运行相同的代码时突然出现了此错误。

1 个答案:

答案 0 :(得分:0)

似乎tf.fromPixels()已被删除,其功能已由tf.browser.fromPixels()接管。

Source