Nice idea, would it be possible to do some OCR at the end?
Take a look at Tesseract, which last time I looked was the best codebase to use in this area. It's part of Google's open source multilingual OCR suite, which is in two parts (layout analysis and actual OCR code being segregated): https://code.google.com/p/tesseract-ocr/
Show HN: Digitizing photos of whiteboards using the command line
11–20 of 37 posts
Re: Show HN: Digitizing photos of whiteboards using the command line
#12Nice idea, would it be possible to do some OCR at the end?
Re: Show HN: Digitizing photos of whiteboards using the command line
#13Earlier quoted context omitted.
Take a look at Tesseract, which last time I looked was the best codebase to use in this area. It's part of Google's open source multilingual OCR suite, which is in two parts (layout analysis and actual OCR code being segregated): https://code.google.com/p/tesseract-ocr/
Is there a guide to using tesseract? When I last used it, I had trouble accurately recovering text from an image I just created with Times New Roman. There are probably some settings I'd need to change to get it to work properly.
Re: Show HN: Digitizing photos of whiteboards using the command line
#14Anyway, I cheated by using some of these actions: http://www.fmwconcepts.com/imagemagick/
In particular the "textcleaner" script proved useful.
I'm definitely going to have a look to see if this script offers advantages over my method.
Re: Show HN: Digitizing photos of whiteboards using the command line
#15Re: Show HN: Digitizing photos of whiteboards using the command line
#16I'm having the same issue as magus: https://gist.github.com/lelandbatey/8677901#comment-1204432
Re: Show HN: Digitizing photos of whiteboards using the command line
#17I'm having the same issue as magus: https://gist.github.com/lelandbatey/8677901#comment-1204432
Re: Show HN: Digitizing photos of whiteboards using the command line
#18Re: Show HN: Digitizing photos of whiteboards using the command line
#19[1] : convert -fill none -draw "matte 0,0 floodfill" -type optimize -colors 64 +dither -trim -fuzz 3% +repage -strip $1 $2
Nevertheless, it's a great technique which i've just saved for such specific cases. Thanks!
Re: Show HN: Digitizing photos of whiteboards using the command line
#20Great job!