Advertisement
Tyler_Elric

Untitled

Jan 7th, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2.  
  3. FOR %%a IN (*.jpg *.tif) DO (
  4. DEL out.txt /F /Q
  5. echo %%a
  6. convert %%a -fuzz 40%% -trim +repage -lat 55x55 -morphology Close:3 Diamond -morphology Erode Diamond -colorspace Gray -threshold 99%% -auto-orient out.png
  7. tesseract out.png out -l letsgodigital -psm 7
  8. type out.txt
  9. echo END FILE
  10. )
  11.  
  12. pause>nul|set/p =any key to exit ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement