Convert an RGB image to grayscale but keep one color?
조회 수: 6 (최근 30일)
이전 댓글 표시
A = imread('C:\FFOutput\gdgf\B.jpg'); B = rgb2gray(A); figure(1),imshow(B);
I have converted the image to a grayscale but don't know how to keep one color especially green.
댓글 수: 0
답변 (4개)
yonatan gerufi
2014년 9월 7일
편집: yonatan gerufi
2014년 9월 7일
Hi, there are several ways to do it,
i find it easy to do:
red_color = A(:,:,1);
green_color = A(:,:,2);
blue_color = A(:,:,3);
John
2014년 9월 7일
I am guessing you want the green channel stored in a separate matrix. In your code, A is only read. Its value does not change after the call to rgb2gray. To get the green channel from A:
greenChannel = A(:,:,2);
Image Analyst
2014년 9월 7일
I just answered this an hour ago for someone. See my comment http://www.mathworks.com/matlabcentral/answers/153732-question-concerning-color-segmentation-performance#comment_235875
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175538/image.jpeg)
댓글 수: 3
DGM
2022년 10월 21일
편집: DGM
2023년 2월 13일
Refer to this answer for more details on how this can be done. While that link includes multiple methods, I'm going to use MIMT replacepixels() for ease of use.
% this is a color image
rgbpict = imread('coloredChips.png');
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1163923/image.png)
% create a grayscale copy by some means
graypict = rgb2gray(rgbpict); % BT601 luma
% HSV ranges for masking
rangeR = [0.963 0.016; 0.258 1; 0.338 1];
rangeG = [0.380 0.453; 0.258 1; 0.338 1];
% create masks to select objects of specified colors
hsvpict = rgb2hsv(rgbpict);
maskR = all(hsvpict >= permute(rangeR(:,1),[2 3 1]),3) ...
| all(hsvpict <= permute(rangeR(:,2),[2 3 1]),3);
maskG = all(hsvpict >= permute(rangeG(:,1),[2 3 1]),3) ...
& all(hsvpict <= permute(rangeG(:,2),[2 3 1]),3);
% clean the masks
maskR = bwareaopen(maskR,100);
maskG = bwareaopen(maskG,100);
% composite the color and gray images using the masks
% replacepixels is from MIMT
outpictR = replacepixels(rgbpict,graypict,maskR);
outpictG = replacepixels(rgbpict,graypict,maskG);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1163928/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1163933/image.png)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!