1

I would like to morph the handwritten text to better readability. I could not figure out ways to do it. For Example,

enter image description here

I would like to morph this Image like this

enter image description here

Community
  • 1
  • 1
Bharath_Raja
  • 622
  • 8
  • 16

1 Answers1

0

If you want to automate this process I am afraid opencv alone won't offer you a solution. You need to identify each letter then print the corresponding image or string. Here is an example. Best of luck.

Meto
  • 638
  • 7
  • 18
  • Hi @meto, I am not looking for any Deep Neural Nets approach like using a handwritten model and again writing it back to an image. I need some morphing technique that could correct the text back in shape. – Bharath_Raja Apr 24 '20 at 20:40
  • The reason I suggested a DNN method is because there is no morphing technique which has the expected effect. Take a look at what cv2 offers from here then decide for yourself : https://docs.opencv.org/trunk/d9/d61/tutorial_py_morphological_ops.html – Meto Apr 24 '20 at 20:46
  • Hi Meto, I know all these. There are some morphing techniques to do this. I couldn't find any implantations of it. Please refer "Smooth Morphing of Handwritten text" by Microsoft. – Bharath_Raja Apr 24 '20 at 20:50
  • If you find any implementations, share with me @Meto – Bharath_Raja Apr 25 '20 at 05:31