Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 477 Bytes

File metadata and controls

10 lines (8 loc) · 477 Bytes

tesseract-ocr-dotnet6-linux-docker

Example how to run tesseract using .NET 6 and the library TesseractOCR in a Docker container.

cd TeasseractOCROnLInux
./download-tessdata.sh # download english tessdata files
docker build . -t tesseractdotnet # build the container from Dockerfile
docker run -v ${PWD}/tessdata:/app/tessdata -v ${PWD}/in:/app/in tesseractdotnet # run container from image with volume mappings