This has nothing to do with tesseract, but with your knowledge of windows...
So you are running:
tesseract sample.tiff sample.tiff -l nld+eng "C:\Users\..\Desktop\test tess\config.txt"
and you should run ;-) :
tesseract sample.tiff sample -l nld+eng "C:\Users\..\Desktop\test tess\config.txt"
So try to use this:
for /R .\ %%g in (*.png) do (
tesseract "%%~nxg" "%%~ng" -l nld+eng "C:\Users\..\Desktop\test tess\config.txt"
)
Zdenko
On Thu, Apr 25, 2013 at 4:53 PM, Benito2313
<benit...@hotmail.com> wrote:
Hello Zdenko,
My command is:
for /R .\ %%g in (*.tiff) do (
tesseract "%%~nxg" "%%~nxg" -l nld+eng "C:\Users\..\Desktop\test tess\config.txt"
Thank you for your response.
Benito2313
Op donderdag 25 april 2013 16:39:48 UTC+2 schreef zdenop het volgende: