Am I understanding this correctly?
2 ビュー (過去 30 日間)
古いコメントを表示
If I start with a color picture and do the below. It separates the original color image into the three red, blue and green matrices with each matrix being a grayscale matrix. When I imshow the red one, if the pixel value is high on it (white) and low for the other two on the exact same pixel then that pixel in the original color image is red right?
r = color(:, :, 1);
g = color(:, :, 2);
b = color(:, :, 3);
0 件のコメント
回答 (2 件)
John D'Errico
2021 年 9 月 13 日
編集済み: John D'Errico
2021 年 9 月 13 日
Yes. Colors that you would describe as red all have high values in the red channel, and small values in the green and blue channels. But those values need not all be strictly [255 0 0]. (Or [1 0 0], depending on the scaling you use.)
For example, using a [0,1] normalization...
img(:,:,1) = 1 - .2*rand(100,100);
img(:,:,2) = .2*rand(100,100);
img(:,:,3) = .2*rand(100,100);
imshow(img)
You might reasonably call that entire image red, just various shades thereof. And the limits of what you might call red are probably subtly different for you than for me. The boundary of the set you would describe as red is indeed in that corner of the RGB color space though.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!