Recognize a number from an image

前端 未结 6 1997
-上瘾入骨i
-上瘾入骨i 2021-01-31 08:53

I\'m trying to write an application to find the numbers inside an image and add them up.

How can I identify the written number in an image?

6条回答
  •  后悔当初
    2021-01-31 09:10

    Neural networks is a typical approach for this kind of problems.

    In this scenario, you can consider each handwritten number a matrix of pixels. You may get better results if you train the neural network with images of the same size as the image you want to recognize.

    You can train the neural network with different images of handwritten numbers. Once trained, if you pass the image of the handwritten number to identify, it will return the most similar number.

    Of course, the quality of training images is a key factor to get good results.

提交回复
热议问题