Class DocumentQualityAnalyzerResult

  • All Implemented Interfaces:
    java.lang.AutoCloseable

    public class DocumentQualityAnalyzerResult
    extends java.lang.Object
    implements java.lang.AutoCloseable
    Result of document quality analysis. It can be used to determine, e.g., if a document is good enough to be used for OCR processing.
    • Constructor Detail

      • DocumentQualityAnalyzerResult

        public DocumentQualityAnalyzerResult​(DocumentQualityAssessment quality,
                                             boolean documentFound,
                                             DocumentQuality qualityLevel,
                                             double orientation,
                                             double orientationConfidence,
                                             java.util.List<java.lang.Integer> cumulativeQualityHistogram,
                                             ImageRef qualityHeatmap,
                                             double bestInputScale)
        Constructs DocumentQualityAnalyzerResult with the given params.
        Parameters:
        quality - Document quality as estimated from the given quality analysis model.
        documentFound - Deprecated, please use `quality` instead, because it provides a more reliable result. True if a document was found.
        qualityLevel - Deprecated, please use `quality` instead, because it provides a more reliable result. Quality of the document, if found. The exact behavior of this value can be configured with the `qualityThresholds` and `qualityIndices` parameters.
        orientation - Dominant orientation of the document, if found. The value is in degrees counter-clockwise, where 0 corresponds to the document being straight, and the value is in the range of [-180, 180]. To rotate the document to be straight, rotate the image clockwise by this value.
        orientationConfidence - Confidence that the reported orientation of the document is correct. The value is in the range of [0, 1]. Possible reasons for low confidence are: * Document contains text with multiple orientations. * Text on the document is poorly readable. * Text on the document is on the edge of detectable text range (text is too small or too big). * Insufficient statistics because only part of the image was processed. See ProcessByTileConfiguration options in the DocumentQualityAnalyzerConfiguration.
        cumulativeQualityHistogram - Cumulative histogram where every entry is equal to the number of symbols with quality equal or lower than N percent, where N is the index of the entry in the array.
        qualityHeatmap - Quality heatmap. Black marks areas of no detected text. Colors represent the quality of detected text, with red meaning the lowest quality and yellow and green meaning progressively higher quality.
        bestInputScale - Returns the best inputScale whose results are used (see inputScales configuration option).
      • DocumentQualityAnalyzerResult

        public DocumentQualityAnalyzerResult​(DocumentQualityAssessment quality,
                                             boolean documentFound,
                                             DocumentQuality qualityLevel,
                                             double orientation,
                                             double orientationConfidence,
                                             java.util.List<java.lang.Integer> cumulativeQualityHistogram,
                                             double bestInputScale)
        Constructs DocumentQualityAnalyzerResult with default parameters.
        Parameters:
        quality - Document quality as estimated from the given quality analysis model.
        documentFound - Deprecated, please use `quality` instead, because it provides a more reliable result. True if a document was found.
        qualityLevel - Deprecated, please use `quality` instead, because it provides a more reliable result. Quality of the document, if found. The exact behavior of this value can be configured with the `qualityThresholds` and `qualityIndices` parameters.
        orientation - Dominant orientation of the document, if found. The value is in degrees counter-clockwise, where 0 corresponds to the document being straight, and the value is in the range of [-180, 180]. To rotate the document to be straight, rotate the image clockwise by this value.
        orientationConfidence - Confidence that the reported orientation of the document is correct. The value is in the range of [0, 1]. Possible reasons for low confidence are: * Document contains text with multiple orientations. * Text on the document is poorly readable. * Text on the document is on the edge of detectable text range (text is too small or too big). * Insufficient statistics because only part of the image was processed. See ProcessByTileConfiguration options in the DocumentQualityAnalyzerConfiguration.
        cumulativeQualityHistogram - Cumulative histogram where every entry is equal to the number of symbols with quality equal or lower than N percent, where N is the index of the entry in the array.
        bestInputScale - Returns the best inputScale whose results are used (see inputScales configuration option).
    • Method Detail

      • getQuality

        public DocumentQualityAssessment getQuality()
        Getter for quality field. See constructor documentation for more information about the field.
        Returns:
        quality
      • getDocumentFound

        public boolean getDocumentFound()
        Getter for documentFound field. See constructor documentation for more information about the field.
        Returns:
        documentFound
      • getQualityLevel

        public DocumentQuality getQualityLevel()
        Getter for qualityLevel field. See constructor documentation for more information about the field.
        Returns:
        qualityLevel
      • getOrientation

        public double getOrientation()
        Getter for orientation field. See constructor documentation for more information about the field.
        Returns:
        orientation
      • getOrientationConfidence

        public double getOrientationConfidence()
        Getter for orientationConfidence field. See constructor documentation for more information about the field.
        Returns:
        orientationConfidence
      • getCumulativeQualityHistogram

        public java.util.List<java.lang.Integer> getCumulativeQualityHistogram()
        Getter for cumulativeQualityHistogram field. See constructor documentation for more information about the field.
        Returns:
        cumulativeQualityHistogram
      • getQualityHeatmap

        public ImageRef getQualityHeatmap()
        Getter for qualityHeatmap field. See constructor documentation for more information about the field.
        Returns:
        qualityHeatmap
      • getBestInputScale

        public double getBestInputScale()
        Getter for bestInputScale field. See constructor documentation for more information about the field.
        Returns:
        bestInputScale
      • close

        public void close()
        Closes native resources (images) held by the object.
        Specified by:
        close in interface java.lang.AutoCloseable