【发布时间】:2014-04-21 01:14:23
【问题描述】:
您好,有人可以帮我解决此代码,我知道它会读取图像并在 RGB 图像 (Fruits1) 的直方图上显示红色通道。
colourImage = imread('Fruits1.jpg'); //read image
redHistogram = double(colourImage(:,:,1)); //what does this line do?
figure, hist(redHistogram(:),124); //what does this line do?
【问题讨论】:
标签: matlab