Barcode Position
data class BarcodePosition(val topLeft: Point, val topRight: Point, val bottomRight: Point, val bottomLeft: Point)
A class representing position (or location) on a barcode in a frame. The position in specified in four corner points given relative to top left corner of the frame.
Since
1.0.0
Parameters
top Left
represents x,y coordinates of the top-left corner.
top Right
represents x,y coordinates of the top-right corner.
bottom Right
represents x,y coordinates of the bottom-right corner.
bottom Left
represents x,y coordinates of the bottom-left corner.