如何对张量流中的一批图像执行tf.image.per_image_standardization

时间:2017-06-13 16:17:31

标签: tensorflow batch-processing image-whitening

我想知道如何在一批图像上执行图像白化。

根据https://www.tensorflow.org/api_docs/python/tf/image/per_image_standardization中的文档,据说tf.image.per_image_standardization将形状为[height, width, channels]的3D张量(即图像)作为输入。

它是缺少的功能还是有不同的方法?

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:16)

这是对一批图像执行此操作的方法。

tf.map_fn(lambda frame: tf.image.per_image_standardization(frame), frames)