图像处理中的红色色调问题

时间:2014-08-21 02:23:10

标签: matlab image-processing

我有一张图像(620x1024),我希望将其变成同样亮度的红色同样大小的图像。怎么办?

1 个答案:

答案 0 :(得分:1)

这是你要找的东西吗?

function h = redifyImage(fname, luminosity)
    img = imread(fname);
    img(:,:,2:3) = 0;
    img(:,:,1) = luminosity;
    h = image(img);
end