How to remove specific line in the binary image?
Show older comments
Hi! I'm a student who study MATLAB my own.
In the image below I want to remove the connected lines that the red arrow points to and leave only the lines in the yellow box.

The final thing I want to do is count the number of pixels in the yellow box, so we will use the regionprops function.
I am wondering if there is a way to remove the connected lines pointed to by the yellow arrow and get the count when using the regionprops function.
I would be grateful if the experts would help me a little.
Thanks.
1 Comment
KALYAN ACHARJYA
on 13 Aug 2018
attached the unedited binary image?
Answers (2)
KALYAN ACHARJYA
on 13 Aug 2018
Edited: KALYAN ACHARJYA
on 13 Aug 2018
Try this one, before applying the operation to convert the image to binary
binary_resultant=bwareaopen(binary_image,p)
% p Blob size, you can adjust accordingly
Image Analyst
on 13 Aug 2018
Edited: Image Analyst
on 13 Aug 2018
It looks like you might have used bwboundaries to get the boundaries of the blobs, and that you don't want the interior boundaries. If that's the case, simply use imfill() before you call bwboundaries():
binaryImage = imfill(binaryImage, 'holes');
boundaries = bwboundaries(binaryImage);
or, more simply:
boundaries = bwboundaries(binaryImage, 'noholes');
if you don't want to change your binary image.
If you just want to mask out (erase to black) everything in the yellow box, simply make a mask and use it as an index
% Create the mask.
yellowBox = true(size(binaryImage));
yellowBox(row1:row2, col1:col2) = false;
% Do the masking.
maskedImage = grayImage; % Initialize a new copy.
maskedImage(yellowBox) = 0; % Erase outside the yellow box.
Of course you'll need to define the starting and stopping rows and columns.
1 Comment
YOUNG HYUN KIM
on 13 Aug 2018
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!