Class MedicalCertificateCheckBox


  • public class MedicalCertificateCheckBox
    extends java.lang.Object
    Structure to contain full information about found box.
    • Constructor Detail

      • MedicalCertificateCheckBox

        public MedicalCertificateCheckBox​(MedicalCertificateCheckBoxType type,
                                          boolean checked,
                                          double checkedConfidence,
                                          java.util.List<PointF> quad)
        Constructs MedicalCertificateCheckBox with the given params.
        Parameters:
        type - Box type. Default is UNKNOWN
        checked - True if the box is checked. Default is false
        checkedConfidence - Confidence of the checked/unchecked prediction. Default is 0.0
        quad - Points of the box.
      • MedicalCertificateCheckBox

        public MedicalCertificateCheckBox​(java.util.List<PointF> quad)
        Constructs MedicalCertificateCheckBox with default parameters.
        Parameters:
        quad - Points of the box.
    • Method Detail

      • getType

        public MedicalCertificateCheckBoxType getType()
        Getter for type field. See constructor documentation for more information about the field.
        Returns:
        type
      • getChecked

        public boolean getChecked()
        Getter for checked field. See constructor documentation for more information about the field.
        Returns:
        checked
      • getCheckedConfidence

        public double getCheckedConfidence()
        Getter for checkedConfidence field. See constructor documentation for more information about the field.
        Returns:
        checkedConfidence
      • getQuad

        public java.util.List<PointF> getQuad()
        Getter for quad field. See constructor documentation for more information about the field.
        Returns:
        quad