Hello--
So I have a binary image and I only want to remove white from specified areas, such as the corners. (These areas being the circles). How would I do this???
I attached the image.
Regards,
Brian P

 채택된 답변

Image Analyst
Image Analyst 2019년 6월 29일

0 개 추천

Try thresholding then masking
mask = grayImage > 250; % or whatever intensity the spots are.
grayImage(mask) = 0; % blacken those pixels.

추가 답변 (1개)

Brian Peoples
Brian Peoples 2019년 6월 19일

0 개 추천

This image is not binary by the way, but i would use bwareaopen(BW,250) to do it

카테고리

도움말 센터File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

질문:

2019년 6월 19일

답변:

2019년 6월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by