I have a simple digit recognition project and have noticed that people generally use two approaches when doing so in Python. My goal is to input a PDF document and get the HANDWRITTEN digits in particular places of the page.
I saw that people either use opencv
, as in this question, or scikitlearn
, as is seen in this example. I am not familiar with either, and am wondering which one would be most simple to learn and implement, given my intended usage. Thanks.