OpenCV detect numbers

前端 未结 10 754
面向向阳花
面向向阳花 2020-12-25 13:52

I\'m using OpenCV on the iPhone and need to detect numbers in an image. I split the image into smaller images so each image has only one number (1-9). All numbers are printe

相关标签:
10条回答
  • 2020-12-25 14:16

    Tesseract is also a nice free OCR engine that is readily available for iPhone and allows you to use your own sets of training images: http://tinsuke.wordpress.com/2011/11/01/how-to-compile-and-use-tesseract-3-01-on-ios-sdk-5/

    0 讨论(0)
  • 2020-12-25 14:20

    Maybe the most simple and convinient way is to use svm as ml algorithm http://opencv.willowgarage.com/documentation/cpp/support_vector_machines.html and gray images as feature vectors.

    0 讨论(0)
  • 2020-12-25 14:21

    This is a nice open source ,It is a ORCDemo on iPhone.Hope it is useful to you

    0 讨论(0)
  • 2020-12-25 14:28

    Basically your problem is just to classify a feature vector, which is the set of pixel intensities after some preprocessing steps. You can use any classifier for this task, like eg. neural networks, which should have a C implementation inside OpenCV. You might also try a C libsvm library for Support Vector Machines.

    There is a good site related to this problem with a lot of papers and a training database.

    0 讨论(0)
提交回复
热议问题