필터 지우기
필터 지우기

Count number of horizontal and vertical lines in an image

조회 수: 1 (최근 30일)
Neha Tapkir
Neha Tapkir 2016년 3월 22일
답변: Charles Dunn 2016년 3월 22일
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.

답변 (1개)

Charles Dunn
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');

Community Treasure Hunt

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

Start Hunting!

Translated by