MK-3PP

Results 6 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...

> Use the latest VS2022. I might need to update sw binary first to make it work. Workaround to not buying the newest compiler for just sw or tesseract: In...

Idk, the community versions should be available. As for my case, the dev and build systems in our company run on VS 2019 Pro Licenses and I doubt CEOs and...

Sorry, already made it using just cmake. Appreciating the update though.