필터 지우기
필터 지우기

how to set the background color of this image to 0 and remaining foreground color to 1 to make this image binary?

조회 수: 2 (최근 30일)
Colored Watershed Label Matrix.png

채택된 답변

Image Analyst
Image Analyst 2019년 3월 30일
Make a mask:
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
% Now make the mask
mask = ~(recChannel ~= 0 & greenChannel == 0 & blueChannel == 0);
  댓글 수: 2
Image Analyst
Image Analyst 2019년 3월 30일
Your colors are not pure.
When I tried to save the image it looks like this is a labeled image returned from the watershed function, so you should already have the binary image to begin with, so that is what you want. You can also get it from the labeled matrix like
binaryImage = labeledMatrix ~= 0;
but that should not be necessary. Not sure how the white boundary lines got there though.

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by