简体   繁体   中英

Good feature extraction for handwritten characters using OpenCV python?

I'm currently using the cv2.goodFeaturesToTrack() method. However, the corners it returns are somewhat vague and doesn't really do what i wanted wherein it would put some dots on the outline of the character. Here is an attached image of how it worked on my custom dataset: sample image

corners = cv2.goodFeaturesToTrack(crop, 8, 0.02, 10)

If cv2.goodFeaturesToTrack() is not a good way of extracting features from handwritten characters, what are some of the better ways to do it? Thank you

Use Neural Networks you can preload trained models also in open cv. Here is short intro into the topic. Its a 1 to 1 tutorial :) Hope you like it. https://www.pyimagesearch.com/2014/09/22/getting-started-deep-learning-python/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM