How to fill missing pixels so that the line is connected?
4 ビュー (過去 30 日間)
古いコメントを表示
I would like to connect the two separated curves into one. So how can I fill the missing pixels?
Also, after using the Hough transform in detecting lines, how can I set those lines detected to zero in a binary image?
Any help
0 件のコメント
採用された回答
Image Analyst
2015 年 2 月 23 日
編集済み: Image Analyst
2015 年 2 月 23 日
You can improve your segmentation algorithm. Or else just extract the two largest blobs with my attached utility. Then use find() to find the two points that are closest and use imline() to connect them by drawing a line. Demos for everything is attached. Feel free to adapt them.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!