Count number of horizontal and vertical lines in an image
5 ビュー (過去 30 日間)
古いコメントを表示
I am working on a project based on OCR. For the feature extraction part of our project, we need to count the number of horizontal, vertical and slanting lines in the letter. We have tried using houghlines and imfilter, but did not get satisfactory results.
0 件のコメント
回答 (1 件)
Charles Dunn
2016 年 3 月 22 日
It is often useful to do edge detection before using the hough transform. You might consider binarizing by using the Canny edge detection (imcanny) before applying the hough transform. Not sure if you are already doing this.
BW = edge(I,'canny');
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!