how to fill the binary image..?
2 views (last 30 days)
Show older comments
I am doing a project on car parking. The image on this link is the result after edge detection. I want to fill the whole area of the car, i.e white. and leave the outer region black.
0 Comments
Answers (1)
Image Analyst
on 16 Feb 2013
Try
filledImage = imfill(edgeImage, 'holes');
You might have to call imclose() to close gaps.
0 Comments
See Also
Categories
Find more on Image Segmentation and Analysis 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!