Willjay90 / DigitRecognition

Apply custom CoreML model with Keras.
MIT License
14 stars 5 forks source link

multiple digit recognition #2

Open Yasheshhc opened 6 years ago

Yasheshhc commented 6 years ago

is there any way to detect multiple digit recognition ?

Willjay90 commented 6 years ago

Well, you should have a pipeline with object detection and digit recognition. If an object is classified as a digit, then run the recognition.

Check out this work. http://ufldl.stanford.edu/housenumbers/

Yasheshhc commented 6 years ago

Thanks a lot for a very quick reply 👍

Well I am new to python so I don't know how to do that. can you please provide me some tutorials / link from where I can understand it that how to do that ?

Willjay90 commented 6 years ago

There are many ways to do the object detection. The most state-of-the-art object detection approaches are YOLO or RCNN(fast R-CNN, faster R-CNN, mask R-CNN)

Check this works out.

Also, you can build up your own machine learning pipeline which fits your requirement.