Ask Your Question

jacobmarley138's profile - activity

2019-03-13 11:14:54 -0600 received badge  Notable Question (source)
2018-04-12 07:42:39 -0600 received badge  Popular Question (source)
2017-08-25 13:52:56 -0600 received badge  Student (source)
2015-03-02 12:03:52 -0600 commented answer Implementation Question: How to create bounding boxes around answers on worksheets

Thanks! I'm new to the opencv package so many of these functions were unknown to me. I'm going to take a deeper dig on this tonight and contribute my python implementation of what you shared... I'm wondering if 2.4.9 is sufficient or would I need to upgrade to the development 3.0.0 to have all the python bindings of the methods you chose to use?

2015-03-02 11:59:07 -0600 received badge  Supporter (source)
2015-03-02 08:43:13 -0600 commented question Implementation Question: How to create bounding boxes around answers on worksheets

I will have access to each newly generated template so that wouldn't be an issue. I've also though about writing a classifier to identify handwritten digits only but it would still give false positives on the typed digits within the answer.

2015-03-02 00:39:05 -0600 asked a question Implementation Question: How to create bounding boxes around answers on worksheets

I've played around with template matching to try to standardize the submitted assignment versus the template assignment but its not quite getting the job done well and reliably. I've also experimented with keypoint detection but I believe that approach is way overkill for my use case.

Here is an example image of the TEMPLATE:

And a sample image I'm trying to match against:

What would be the best approach in terms of normalizing the sample image (scaling, deskewing), subtracting out the template image, and be left with the remaining text?