OCR - Digit Slant Detection and Slant Correction

조회 수: 3 (최근 30일)
Tan Wai Chun
Tan Wai Chun 2021년 2월 19일
댓글: Tan Wai Chun 2021년 2월 25일
Hi,
I am working on Autoamted Handwritten Digit Recognition with deep learning algorithm. Since the handwritten digits have a lot of variation, in terms of the slanted angles, so I would like to look for the potential solutions for digit slant detectiona and slant correction.
I have tried Hough Transform, however, it requires edges as reference and digit doesn't have a proper edge.
The example of slanted digit is shown in below:
I would like to correct its orientation so that my NN can recognize it accurately.
Thank You :D

채택된 답변

Shashank Gupta
Shashank Gupta 2021년 2월 22일
Hi,
There are generally 2 ways to deal with such problems. Either you rectify the orientation of image and train the model for straight up digits or you can add images with different orientation in your training data and let your deep model handle such complexity. I would prefer second approach because correcting the orientation is difficult task and cannot be generalised effectively which will result in error and in turn affect the detection also. So I would suggest you to augment your data to take care of such random rotation. it will make your model more robust. The easy way to deal with this is to use imageDataAugmentor function during training. It will help you create digits image with random rotation and then you can train your model with such variety, in the end you will obtain a robust model which can take of rotation by itself.
I hope this helps.
Cheers.
  댓글 수: 1
Tan Wai Chun
Tan Wai Chun 2021년 2월 25일
Thanks Shashank Gupta. I able to make it with Radon Transform algorithm. Btw, thanks for your valuable info ! :D

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by