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

NameDescription
init

Methods

NameReturn TypeStaticDescription
eqboolNoReturns a value indicating whether this instance is equal to a specified BarCodeRegionParameters value.
hashintNoReturns the hash code for the current instance.
strstrNoReturns a human-readable string representation of this BarCodeRegionParameters.
anglefloatNo
pointsOptional[List[PointLike]]No
quadrangleOptional[Quadrangle]No
rectangleOptional[RectLike]No

BarCodeRegionParameters Constructor

__init__(self, _java_class) -> def
ParameterTypeDescription
_java_class``

BarCodeRegionParameters.eq

__eq__(self, BarCodeRegionParameters other) -> bool

Returns a value indicating whether this instance is equal to a specified BarCodeRegionParameters value.

ParameterTypeDescription
otherBarCodeRegionParameters

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]