How to remove non linear feature from linear feature in matlab

조회 수: 1 (최근 30일)
Shariful Islam
Shariful Islam 2017년 2월 18일
답변: Image Analyst 2017년 2월 19일
Hi all,
Can anyone help on how can I remove non linear feature (e.g. irregular shapes that is corrected to linear feature) from linear feature as the picture shown below. Thanks in advanced.
Visual for the underlaying segmentation:

답변 (1개)

Image Analyst
Image Analyst 2017년 2월 19일
Looks like you did quadtree decomposition - not sure how that would help. What I would do is to call imopen() to get rid of hte line structure but leave the large blobs. Then use the large blobs as a mask to erase those parts of the original image.
bigBlobs = imopen(binaryImage, se);
binaryImage(bigBlobs) = false;

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by