필터 지우기
필터 지우기

How can I create a binary image, where the blue pixels are white and everything else is black?

조회 수: 1 (최근 30일)
I have an image where there is a light-blue book in the background. I need to create a binary image where I select only the blue pixels of the image as white and everything else as black so I can 'isolate' the book.

채택된 답변

Image Analyst
Image Analyst 2018년 1월 28일
편집: Image Analyst 2018년 1월 28일
Use the Color thresholder on the Apps tab of the tool ribbon. Then export the function to an m-file. Or you might try this
redChannel = rgbImage(:, :, 1);
binaryImage = redChannel < 128; % Adjust value as needed.
% Extract largest blob only
binaryImage = bwareafilt(binaryImage, 1);
This assumes the rest of your image is some uniform non-blue color. If the "foreground" and the rest of your "background" (not including the book in the background) is cluttered with all kinds of various objects, then it could be very challenging. In that case, attach your image to your original post up top.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by