14

我想知道如何对一批图像进行图像白化。

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

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

任何帮助深表感谢。

4

1 回答 1

18

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

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

于 2017-06-13T18:05:20.743 回答