0
如何將圖像增強功能(如tf.image.random_flip_left_right
)應用於一批圖像?在批次上應用圖像增強
這些功能所需要的輸入大小爲秩3([width, height, channels]
),而成批數據具有如圖4([batch_size, width, height, channels]
)秩
如何將圖像增強功能(如tf.image.random_flip_left_right
)應用於一批圖像?在批次上應用圖像增強
這些功能所需要的輸入大小爲秩3([width, height, channels]
),而成批數據具有如圖4([batch_size, width, height, channels]
)秩
可以使用tf.train.batch來構建圖像的批次。
看看在CIFAR10例如如何處理輸入: https://github.com/tensorflow/tensorflow/blob/master/tensorflow/models/image/cifar10/cifar10_input.py
你可以找到這裏的CIFAR10例子教程: https://www.tensorflow.org/versions/r0.9/tutorials/deep_cnn/index.html
希望幫助!