Recognition of numbers in images(Matlab)
I am learning image processing and i am trying to start my first project, that is Simple number recognition in an image.
So far i have applied thresholding to the image. Now i would like to know some algorithms by which my system can recognize the number in the image. Preferably the algorithm must be simple and it doesn't have to robust as i am would be generating the image in paint using the same font.
I have looked at the similar questions here on SO and they all point out to using libraries. Remember guys i am trying to learn so please don't point out some libraries.
Are the numbers printed or hand-written?
The Computer Vision System Toolbox includes a function called ocr
, which will recognize both, letters and numbers.
If you are looking for hand-written digit recognition, please take a look at this example.
链接地址: http://www.djcxy.com/p/13972.html上一篇: 用KNN分类器进行数字识别之前的处理
下一篇: 识别图像中的数字(Matlab)