MK-3PP

Results 3 comments of MK-3PP

### Input image ![input](https://github.com/tesseract-ocr/tesseract/assets/60696116/4185d4eb-5834-409c-a450-c2279f1cdcdf) ### Code ``` #include "leptonica/allheaders.h" #include "leptonica/pix_internal.h" #include "tesseract/baseapi.h" #include "opencv2/imgcodecs.hpp" #include "opencv2/imgproc.hpp" #include int main() { cv::Mat in_img = cv::imread("./input.png", cv::ImreadModes::IMREAD_GRAYSCALE); tesseract::TessBaseAPI tess; // Set...

Thank you. As you guessed, text detection is what we aimed for. Just to reemphasize, I was neither being thrown off by the random junk being detected outside the obvious...

One last question: Do you have any educated guess on why this is happening? ![grafik](https://github.com/tesseract-ocr/tesseract/assets/60696116/6498e146-99c2-4126-923d-c4e9d70e7d00) As far as I understand documentation, the image acquired by GetThresholdedImage() is the true image...