How to remove non linear feature from linear feature in matlab
1 回表示 (過去 30 日間)
古いコメントを表示
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:

0 件のコメント
回答 (1 件)
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;
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!