Package ai.djl.modality.cv.output
Class Rectangle
java.lang.Object
ai.djl.modality.cv.output.Rectangle
- All Implemented Interfaces:
BoundingBox,BytesSupplier,ai.djl.util.JsonSerializable,Serializable
A
Rectangle specifies an area in a coordinate space that is enclosed by the
Rectangle object's upper-left point Point in the coordinate space, its width, and its
height.
The rectangle coordinates are usually from 0-1 and are ratios of the image size. For example, if you have an image width of 400 pixels and the rectangle starts at 100 pixels, you would use .25.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface ai.djl.util.JsonSerializable
ai.djl.util.JsonSerializable.Serializer -
Constructor Summary
ConstructorsConstructorDescriptionRectangle(double x, double y, double width, double height) Constructs a newRectanglewhose upper-left corner is specified as(x,y)and whose width and height are specified by the arguments of the same name.Constructs a newRectanglewhose upper-left corner is specified as coordinatepointand whose width and height are specified by the arguments of the same name. -
Method Summary
Modifier and TypeMethodDescriptionReturns the boundingRectangleof thisBoundingBox.double[]Returns the upper left and bottom right coordinates.doubleReturns the height of the Rectangle.doublegetIoU(BoundingBox box) Returns the Intersection over Union (IoU) value between bounding boxes.getPath()Returns an iterator object that iterates along theBoundingBoxboundary and provides access to the geometry of theBoundingBoxoutline.getPoint()Returns the top left point of the bounding box.doublegetWidth()Returns the width of the Rectangle.doublegetX()Returns the left x-coordinate of the Rectangle.doublegetY()Returns the top y-coordinate of the Rectangle.Applies nms (non-maximum suppression) to the list of rectangles.com.google.gson.JsonObjecttoString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ai.djl.ndarray.BytesSupplier
getAsBytes, getAsObjectMethods inherited from interface ai.djl.util.JsonSerializable
getAsString, toByteBuffer, toJson
-
Constructor Details
-
Rectangle
public Rectangle(double x, double y, double width, double height) Constructs a newRectanglewhose upper-left corner is specified as(x,y)and whose width and height are specified by the arguments of the same name.- Parameters:
x- the specified X coordinate (0-1)y- the specified Y coordinate (0-1)width- the width of theRectangle(0-1)height- the height of theRectangle(0-1)
-
Rectangle
Constructs a newRectanglewhose upper-left corner is specified as coordinatepointand whose width and height are specified by the arguments of the same name.- Parameters:
point- the upper-left corner of the coordinate (0-1)width- the width of theRectangle(0-1)height- the height of theRectangle(0-1)
-
-
Method Details
-
getBounds
Returns the boundingRectangleof thisBoundingBox.- Specified by:
getBoundsin interfaceBoundingBox- Returns:
- a new
Rectanglefor thisBoundingBox
-
getPath
Returns an iterator object that iterates along theBoundingBoxboundary and provides access to the geometry of theBoundingBoxoutline.- Specified by:
getPathin interfaceBoundingBox- Returns:
- a
Iterableobject, which independently traverses the geometry of theBoundingBox
-
getPoint
Returns the top left point of the bounding box.- Specified by:
getPointin interfaceBoundingBox- Returns:
- the
Pointof the top left corner
-
getIoU
Returns the Intersection over Union (IoU) value between bounding boxes.Also known as Jaccard index
- Specified by:
getIoUin interfaceBoundingBox- Parameters:
box- the bounding box to calculate- Returns:
- the IoU value
-
getX
public double getX()Returns the left x-coordinate of the Rectangle.- Returns:
- the left x-coordinate of the Rectangle (0-1)
-
getY
public double getY()Returns the top y-coordinate of the Rectangle.- Returns:
- the top y-coordinate of the Rectangle (0-1)
-
getWidth
public double getWidth()Returns the width of the Rectangle.- Returns:
- the width of the Rectangle (0-1)
-
getHeight
public double getHeight()Returns the height of the Rectangle.- Returns:
- the height of the Rectangle (0-1)
-
getCoordinates
public double[] getCoordinates()Returns the upper left and bottom right coordinates.- Returns:
- the upper left and bottom right coordinates
-
serialize
public com.google.gson.JsonObject serialize()- Specified by:
serializein interfaceai.djl.util.JsonSerializable
-
toString
-
nms
Applies nms (non-maximum suppression) to the list of rectangles.- Parameters:
boxes- an list ofRectanglescores- a list of scoresnmsThreshold- the nms threshold- Returns:
- the filtered list with the index of the original list
-