BarCodeRegionParameters
BarCodeRegionParameters class
Module: aspose_barcode.recognition.barcode_region_parameters
Represents the recognized barcode’s region and barcode angle. This sample shows how to get barcode Angle and bounding quadrangle values.
Constructors
| Name | Description |
|---|---|
| init |
Methods
| Name | Return Type | Static | Description |
|---|---|---|---|
| eq | bool | No | Returns a value indicating whether this instance is equal to a specified BarCodeRegionParameters value. |
| hash | int | No | Returns the hash code for the current instance. |
| str | str | No | Returns a human-readable string representation of this BarCodeRegionParameters. |
| angle | float | No | |
| points | Optional[List[PointLike]] | No | |
| quadrangle | Optional[Quadrangle] | No | |
| rectangle | Optional[RectLike] | No |
BarCodeRegionParameters Constructor
__init__(self, _java_class) -> def
| Parameter | Type | Description |
|---|---|---|
_java_class | `` |
BarCodeRegionParameters.eq
__eq__(self, BarCodeRegionParameters other) -> bool
Returns a value indicating whether this instance is equal to a specified BarCodeRegionParameters value.
| Parameter | Type | Description |
|---|---|---|
other | BarCodeRegionParameters |
Return Type: bool — True if obj has the same value as this instance, otherwise False.
BarCodeRegionParameters.hash
__hash__(self) -> int
Returns the hash code for the current instance.
Return Type: int — A hash code for the current object.
BarCodeRegionParameters.str
__str__(self) -> str
Returns a human-readable string representation of this BarCodeRegionParameters.
Return Type: str — A string that represents this BarCodeRegionParameters.
BarCodeRegionParameters.angle
angle(self) -> float
Return Type: float
BarCodeRegionParameters.points
points(self) -> Optional[List[PointLike]]
Return Type: Optional[List[PointLike]]
BarCodeRegionParameters.quadrangle
quadrangle(self) -> Optional[Quadrangle]
Return Type: Optional[Quadrangle]
BarCodeRegionParameters.rectangle
rectangle(self) -> Optional[RectLike]
Return Type: Optional[RectLike]