gitextract_z8kqhkl4/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R/ │ ├── RcppExports.R │ ├── ocr.R │ ├── onload.R │ ├── tessdata.R │ └── tesseract.R ├── README.md ├── cleanup ├── configure ├── configure.win ├── inst/ │ ├── AUTHORS │ ├── COPYRIGHT │ └── WORDLIST ├── man/ │ ├── ocr.Rd │ ├── tessdata.Rd │ └── tesseract.Rd ├── src/ │ ├── Makevars.in │ ├── Makevars.win │ ├── RcppExports.cpp │ ├── tesseract.cpp │ └── tesseract_types.h ├── tesseract.Rproj ├── tests/ │ └── spelling.R ├── tools/ │ ├── test.cpp │ └── winlibs.R └── vignettes/ └── intro.Rmd