I convert an image using ABBYY's OCR SDK:
CSafePtr<IFRDocument> frDocument = ...;
frDocument->AddImageFile( "C:\\test\\input.tif" );
frDocument->Process( 0 );
frDocument->Export( "C:\\test\\output.rtf", FEF_RTF, 0 );
But now I need to get the char bounding boxes and confidence levels, as well. I can get them from Tesseract so I assume it's possible with ABBYY's SDK as well.
How do I get the bounding boxes and confidence levels?