标签: matlab image-processing computer-vision
在Matlab中,如何在不使用工具箱的情况下将红绿蓝(RGB)格式的图像转换为灰度图像。
答案 0 :(得分:7)
使用“the”工具箱:rgb2gray。
没有“工具箱”:查看here,here或here或this paper或here或here或......
这只是谷歌首次将“转换为灰度”和“将RGB转换为灰度级MATLAB”命中。
摘要:
gray = 0.2989*img(:,:,1) + 0.5870*img(:,:,2) + 0.1140*img(:,:,3);
其中img是您的RGB图像。
img