Class MedicalCertificateCheckBox
- java.lang.Object
-
- io.scanbot.sdk.medicalcertificate.MedicalCertificateCheckBox
-
public class MedicalCertificateCheckBox extends java.lang.ObjectStructure to contain full information about found box.
-
-
Constructor Summary
Constructors Constructor Description MedicalCertificateCheckBox(MedicalCertificateCheckBoxType type, boolean checked, double checkedConfidence, java.util.List<PointF> quad)Constructs MedicalCertificateCheckBox with the given params.MedicalCertificateCheckBox(java.util.List<PointF> quad)Constructs MedicalCertificateCheckBox with default parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetChecked()Getter for checked field.doublegetCheckedConfidence()Getter for checkedConfidence field.java.util.List<PointF>getQuad()Getter for quad field.MedicalCertificateCheckBoxTypegetType()Getter for type field.
-
-
-
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 UNKNOWNchecked- True if the box is checked. Default is falsecheckedConfidence- Confidence of the checked/unchecked prediction. Default is 0.0quad- 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
-
-