标签: python opencv tensorflow histogram scikit-image
我是Tensorflow的新手,我正在尝试设计一个损失函数来解释输入图像和输出图像的3通道直方图的差异。
我知道Tensorflow中的L1损失与tf.reduce_mean(tf.abs(Output- Input)类似,但不知道如何将其写入比较直方图。
tf.reduce_mean(tf.abs(Output- Input)
...谢谢