【发布时间】:2015-06-26 22:06:15
【问题描述】:
我正在使用 Theano 实现 CNN。在论文中,我必须在训练 CNN 之前做这个图像预处理
We extracted RGB patches of 61x61 dimensions associated with each poselet activation, subtracted the mean and used this data to train the convnet model shown in Table 1
你能告诉我“减去均值”是什么意思吗?告诉我这些步骤是否正确(这是我的理解) 1) 计算整个图像的红色通道、绿色通道和蓝色通道的平均值 2) 对于每个像素,从红色值中减去红色通道的平均值,从绿色值中减去绿色通道的平均值,蓝色通道的平均值相同 3)有负值是正确的还是我使用了abs?
谢谢大家!!
【问题讨论】:
标签: python image-processing machine-learning neural-network