Uses of Class
com.mindee.geometry.Polygon
-
Packages that use Polygon Package Description com.mindee.geometry com.mindee.parsing.common.ocr com.mindee.parsing.custom com.mindee.parsing.generated com.mindee.parsing.standard -
-
Uses of Polygon in com.mindee.geometry
Methods in com.mindee.geometry that return Polygon Modifier and Type Method Description Polygon
Polygon.PolygonBuilder. build()
static Polygon
PolygonUtils. combine(Polygon base, Polygon target)
Merge the coordinates of the two polygons.static Polygon
BoundingBoxUtils. createBoundingBoxFrom(Polygon polygon)
Polygon
PolygonDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser jsonParser, com.fasterxml.jackson.databind.DeserializationContext deserializationContext)
Polygon
Bbox. getAsPolygon()
Get the Bbox as a Polygon.static Polygon
PolygonUtils. getFrom(List<List<Double>> polygon)
Create a Polygon from a list of a list of floats.Methods in com.mindee.geometry with parameters of type Polygon Modifier and Type Method Description static Polygon
PolygonUtils. combine(Polygon base, Polygon target)
Merge the coordinates of the two polygons.static int
PolygonUtils. CompareOnX(Polygon polygon1, Polygon polygon2)
Compare two polygons based on their X coordinates.static int
PolygonUtils. CompareOnY(Polygon polygon1, Polygon polygon2)
Compare two polygons based on their Y coordinates.static Polygon
BoundingBoxUtils. createBoundingBoxFrom(Polygon polygon)
static Bbox
BboxUtils. generate(Polygon polygon)
Generate a BBox from a single Polygon.static Double
PolygonUtils. getMaxXCoordinate(Polygon polygon)
static Double
PolygonUtils. getMaxYCoordinate(Polygon polygon)
static Double
PolygonUtils. getMinXCoordinate(Polygon polygon)
static Double
PolygonUtils. getMinYCoordinate(Polygon polygon)
static boolean
PolygonUtils. isPointInPolygonY(Point centroid, Polygon polygon)
Determine if a Point is within a Polygon's Y axis.Method parameters in com.mindee.geometry with type arguments of type Polygon Modifier and Type Method Description static Bbox
BboxUtils. generate(List<Polygon> polygons)
Generate a BBox from a list of Polygons. -
Uses of Polygon in com.mindee.parsing.common.ocr
Methods in com.mindee.parsing.common.ocr that return Polygon Modifier and Type Method Description Polygon
Word. getPolygon()
Define the coordinates of the zone in the page where the values have been found. -
Uses of Polygon in com.mindee.parsing.custom
Methods in com.mindee.parsing.custom that return Polygon Modifier and Type Method Description Polygon
ListFieldValue. getPolygon()
Define the coordinates of the zone in the page where the values have been found.Constructors in com.mindee.parsing.custom with parameters of type Polygon Constructor Description ListFieldValue(String content, double confidence, Polygon polygon)
-
Uses of Polygon in com.mindee.parsing.generated
Methods in com.mindee.parsing.generated that return Polygon Modifier and Type Method Description Polygon
GeneratedObject. getAsPolygon(String key)
Get the specified key as aPolygon
object.Polygon
GeneratedObject. getPolygon()
Get the polygon, if present. -
Uses of Polygon in com.mindee.parsing.standard
Methods in com.mindee.parsing.standard that return Polygon Modifier and Type Method Description Polygon
BaseField. getBoundingBox()
The bounding box equivalent of the polygon.Polygon
PositionData. getBoundingBox()
Polygon
PositionField. getBoundingBox()
Straight rectangle.Polygon
BaseField. getPolygon()
Define the coordinates of the zone in the page where the values has been found.Polygon
PositionData. getPolygon()
Polygon
PositionField. getPolygon()
Free polygon with up to 30 vertices.Polygon
PositionField. getQuadrangle()
Free polygon with 4 vertices.Polygon
PositionField. getRectangle()
Rectangle that may be oriented (can go beyond the canvas).Constructors in com.mindee.parsing.standard with parameters of type Polygon Constructor Description AmountField(Double value, Double confidence, Polygon polygon, Integer pageId)
BaseField(Double confidence, Polygon polygon, Integer pageId)
BooleanField(Boolean value, Double confidence, Polygon polygon, Integer pageId)
DateField(LocalDate value, Double confidence, Polygon polygon, Integer pageId, Boolean isComputed)
StringField(String value, Double confidence, Polygon polygon)
StringField(String value, String rawValue, Double confidence, Polygon polygon, Integer pageId)
-