Hough Transform Algorithm for Text Detection in Images [closed]

微笑、不失礼 提交于 2020-01-02 10:23:12

问题


Hough Transform Algorithm is one of the algorithm use for text line detection and edge detection.

Does Hough Transform Algorithm can be use for Detecting text in Images?

What must be the process or implementation in java for this question? or It must be have another algorithm to make it possilble?

Hoping for positive response.


回答1:


Hough transform was initially designed to detect straight lines in an image, but later modifications have been proposed to use similar logic to detect circles or other shapes. However letters and text is a bit more complex and can(most of the time) be described with a simple shape. Thus applying Hough transform directly is not possible.

However Hough transform can be used as part of the solution. For instance you can detect straight lines and this can help you detect separate letters or to recognize some special letters. Also sometimes Hough can be used to detect text direction which is a challenging problem on its own.

Text recognition is a very interesting problem and many different solutions have been proposed. In fact there are whole courses dedicated to that and new approaches appear often. I personally like approaches that use neural networks the most. Have a look here for instance.



来源:https://stackoverflow.com/questions/25894050/hough-transform-algorithm-for-text-detection-in-images

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!