Re: [tesseract-ocr] tessedit_create_boxfile condensed like boxaGetBox

2021-04-21 Thread Zdenko Podobny
Hello, it is unclear for what do you do/want to do: - you wrote want individual chars, but request from API line (RIL_TEXTLINE) - then you wrote " Is there any way to combine individual boxes to print like API" so what do you want to combine? Maybe it would be better if you provide

[tesseract-ocr] tessedit_create_boxfile condensed like boxaGetBox

2021-04-21 Thread Baris Unsal
Hi, when I pass tessedit_create_boxfile 1 argument to tesseract it outputs individual chars' location. But when I use api like this: ``` Boxa* boxes = api->GetComponentImages(tesseract::RIL_TEXTLINE, true,NULL, NULL); for(int i = 0; i < boxes->n; i++){ BOX* box =boxaGetBox(boxes,i,L_CLONE);