Image pre-processing to remove noise

3 ビュー (過去 30 日間)
SS
SS 2021 年 5 月 30 日
編集済み: SS 2021 年 5 月 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.

採用された回答

KALYAN ACHARJYA
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
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);
SS
SS 2021 年 5 月 30 日
編集済み: SS 2021 年 5 月 30 日
The raw binary image is obtained by thresholding and combining few gray images.

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by