How to remove specific portions of a image?

3 views (last 30 days)
Hey, I wish to remove circles from my image by specifying its center and the radius. Its a bw image and i wish to specifically remove few selected circles by specifying their centers and radii. I know strel can be used but i am not able to figure out how to use it for this purpose. Thanks.

Accepted Answer

Image Analyst
Image Analyst on 30 Jul 2014
Keeping in mind that an image must remain rectangular, what does "remove" mean to you? You can't really remove those pixels but you can replace them with something, such as another image, a texture, a uniform gray level, or smear the boundaries inwards with roifill(). What do you want to do?
  3 Comments
Image Analyst
Image Analyst on 30 Jul 2014
See the FAQ: http://matlab.wikia.com/wiki/FAQ#How_do_I_create_a_circle.3F to create a circle mask. Then use that to replace the image
grayImage(mask) = 0;
Image Analyst
Image Analyst on 30 Jul 2014
If you just want to replace all pixels above some value, like 250, with 0, then do this
binaryImage = grayImage > 250; % or whatever.
grayImage(binaryImage) = 0; % Set to 0.

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!