Class RecognitionResult.LinesResult
Namespace: Aspose.OCR
Assembly: Aspose.OCR.dll (25.7.0)
Recognized text from row with row coordinates.
public class RecognitionResult.LinesResult
Inheritance
object ← RecognitionResult.LinesResult
Inherited Members
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
LinesResult()
Constructor for LinesResult object.
public LinesResult()
Properties
Confidence
The confidence score assigned to the recognized text line, represented as a floating-point value between 0.0 and 1.0. A score of 1.0 indicates the highest level of recognition certainty.
This value is always set to 0 when using a temporary license. Confidence is only calculated for the following languages: Chinese language group, Arabic, Hindi, European, Korean, Japanese, Telugu, Tamil, and Kannada.
Confidence is not calculated for ExtLatin or languages that contain diacritical marks.
public double Confidence { get; set; }
Property Value
Line
Row coordinates.
public Rectangle Line { get; set; }
Property Value
Rectangle
TextInLine
Recognized text from row.
public string TextInLine { get; set; }