Image pre-processing to remove noise
4 次查看(过去 30 天)
显示 更早的评论
Hi. Is there any image pre-propcessing technique to remove noise from binary images? Please see attached image, I want to remove the objects that are not very straight lines and are connected together, a cxongregation of pixels that look like small circles in the image.
Any hints with MATLAB commands can really help.
Thanks.
0 个评论
采纳的回答
KALYAN ACHARJYA
2021-5-30
编辑:KALYAN ACHARJYA
2021-5-30
Absolutely possible, you can remove the white pixels based on area (Extract objects from binary image by size) and do some AND or OR logical Operation to get the resultant image.
4 个评论
Image Analyst
2021-5-30
How did you get your binary image, bw? By thresholding your original gray scale image? It should be logical then. You can't call it on a gray scale image.
bw = grayImage < 100; % or whatever
bw2 = bwpropfilt(bw, 'area', p, direction, conn);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!