필터 지우기
필터 지우기

separate the red part of imge

조회 수: 5 (최근 30일)
PK
PK 2016년 10월 6일
댓글: Image Analyst 2016년 10월 6일
I have an red flower image with green leaf. I want to separate only red flower. How can I do? Please help!

채택된 답변

Matthew Eicholtz
Matthew Eicholtz 2016년 10월 6일
편집: Matthew Eicholtz 2016년 10월 6일
A naive approach would be to extract "red" colors from the image:
I = imread('peppers.png');
R = I(:,:,1);
G = I(:,:,2);
B = I(:,:,3);
% Here I am naively defining "red" as the red layer being greater than
% some threshold and the blue and green layers being less than that threshold
thold = 100;
mask = R>thold & G<thold & B<thold;
R(~mask) = 255;
G(~mask) = 255;
B(~mask) = 255;
J = cat(3,R,G,B);
figure; montage(cat(4,I,J),'Size',[1 2]);
More advanced approaches exists (google "image segmentation"). For instance, see the MATLAB example for color-based segmentation using k-means clustering.
  댓글 수: 2
PK
PK 2016년 10월 6일
May I know threshold value for colors. Please!
Image Analyst
Image Analyst 2016년 10월 6일
The Color thresholder app, like I recommended, will tell you those.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2016년 10월 6일
Use the Color Thresholder on the Apps tab of the toolbar ribbon.
Or else see my File Exchange for several color segmentation demos. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by