我想知道如何在一批图像上执行图像白化。
根据https://www.tensorflow.org/api_docs/python/tf/image/per_image_standardization中的文档,据说tf.image.per_image_standardization
将形状为[height, width, channels]
的3D张量(即图像)作为输入。
它是缺少的功能还是有不同的方法?
非常感谢任何帮助。
答案 0 :(得分:16)
这是对一批图像执行此操作的方法。
tf.map_fn(lambda frame: tf.image.per_image_standardization(frame), frames)