|
1 | | -__version__ = "4.0.10.8914" |
| 1 | +__version__ = "4.0.10.8962" |
| 2 | + |
| 3 | +import sys |
| 4 | + |
| 5 | +module_name = "runtime_data_dynamsoft" |
| 6 | +module = sys.modules.setdefault(module_name, type(sys)(module_name)) |
2 | 7 |
|
3 | 8 | if __package__ or "." in __name__: |
4 | 9 | from . import _DynamsoftCore |
@@ -1018,7 +1023,7 @@ class CapturedResultBase: |
1018 | 1023 | get_original_image_tag(self) -> ImageTag: Gets the tag of the original image. |
1019 | 1024 | get_rotation_transform_matrix(self) -> List[float]: Gets the rotation transform matrix. |
1020 | 1025 | get_error_code(self) -> int: Gets the error code of the detection operation. |
1021 | | - et_error_string(self) -> str: Gets the error string of the detection operation. |
| 1026 | + get_error_string(self) -> str: Gets the error string of the detection operation. |
1022 | 1027 | """ |
1023 | 1028 | _thisown = property( |
1024 | 1029 | lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag" |
@@ -1592,6 +1597,8 @@ class PredetectedRegionElement(RegionObjectElement): |
1592 | 1597 | Methods: |
1593 | 1598 | get_mode_name(self) -> str: Gets the name of the detection mode used to detect this region element. |
1594 | 1599 | set_location(self, loc: Quadrilateral) -> int: Sets the location of the region object element. |
| 1600 | + get_label_id(self) -> int: Gets the label ID of the predetected region element. |
| 1601 | + get_label_name(self) -> str: Gets the label name of the predetected region element. |
1595 | 1602 | """ |
1596 | 1603 | _thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") |
1597 | 1604 |
|
@@ -1648,15 +1655,10 @@ class IntermediateResultUnit: |
1648 | 1655 | get_original_image_hash_id(self) -> str: Gets the hash ID of the original image. |
1649 | 1656 | get_original_image_tag(self) -> ImageTag: Gets the image tag of the original image. |
1650 | 1657 | get_transform_matrix(self, matrix_type: EnumTransformMatrixType) -> List[float]: Gets the transformation matrix via EnumTransformMatrixType. |
1651 | | - set_transform_matrix(self, matrix_type: EnumTransformMatrixType, matrix: List[float]) -> None: Sets the transformation matrix via EnumTransformMatrixType. |
1652 | 1658 | get_type(self) -> int: Gets the type of the intermediate result unit. |
1653 | 1659 | clone(self) -> IntermediateResultUnit: Creates a copy of the intermediate result unit. |
1654 | | - set_hash_id(self, hash_id: str) -> None: Sets the hash ID of the intermediate result unit. |
1655 | | - set_original_image_tag(self, tag: ImageTag) -> None: Sets the image tag of the original image. |
1656 | | - set_original_image_hash_id(self, hash_id: str) -> None: Sets the hash ID of the original image. |
1657 | 1660 | replace(self, unit: IntermediateResultUnit) -> int: Replaces the specified IntermediateResultUnit object with the current IntermediateResultUnit object. |
1658 | 1661 | get_usage_count(self) -> int: Gets the usage count of the intermediate result unit. |
1659 | | - set_usage_count(self, usage_count: int) -> None: Sets the usage count of the intermediate result unit. |
1660 | 1662 | """ |
1661 | 1663 | _thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") |
1662 | 1664 |
|
|
0 commit comments