I'm trying to extract the data from image using pytesseract. This module has image_to_data, image_to_osd methods. These two methods provides lot of info(TextLineOrder, WritingDirection, ScriptDetection, Orientation etc...) as output.
Below image is the output of image_to_data method. what does values of these columns(level, block_num, par_num, line_num, word_num) meaning?
Output of image_to_osd looks as below. What is the meaning each term in this?
Page number: 0 Orientation in degrees: 0 Rotate: 0 Orientation confidence: 16.47 Script: Latin Script confidence: 4.00
I refered docs but I did not get any info regarding these parameters.