dynamsoft-barcode-reader-bundle 11.2.5000__cp313-cp313-macosx_12_0_universal2.whl → 11.4.1000__cp313-cp313-macosx_12_0_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dynamsoft_barcode_reader_bundle/Models/Code128Decoder.data +0 -0
- dynamsoft_barcode_reader_bundle/Models/Code39ITFDecoder.data +0 -0
- dynamsoft_barcode_reader_bundle/Models/DataMatrixQRCodeDeblur.data +0 -0
- dynamsoft_barcode_reader_bundle/Models/DataMatrixQRCodeLocalization.data +0 -0
- dynamsoft_barcode_reader_bundle/Models/EAN13Decoder.data +0 -0
- dynamsoft_barcode_reader_bundle/Models/OneDDeblur.data +0 -0
- dynamsoft_barcode_reader_bundle/Models/OneDLocalization.data +0 -0
- dynamsoft_barcode_reader_bundle/Models/PDF417Deblur.data +0 -0
- dynamsoft_barcode_reader_bundle/Models/PDF417Localization.data +0 -0
- dynamsoft_barcode_reader_bundle/_DynamsoftBarcodeReader.cpython-313-darwin.so +0 -0
- dynamsoft_barcode_reader_bundle/_DynamsoftCaptureVisionRouter.cpython-313-darwin.so +0 -0
- dynamsoft_barcode_reader_bundle/_DynamsoftCore.cpython-313-darwin.so +0 -0
- dynamsoft_barcode_reader_bundle/_DynamsoftImageProcessing.cpython-313-darwin.so +0 -0
- dynamsoft_barcode_reader_bundle/_DynamsoftLicense.cpython-313-darwin.so +0 -0
- dynamsoft_barcode_reader_bundle/_DynamsoftUtility.cpython-313-darwin.so +0 -0
- dynamsoft_barcode_reader_bundle/__init__.py +1 -1
- dynamsoft_barcode_reader_bundle/core.py +72 -3
- dynamsoft_barcode_reader_bundle/cvr.py +21 -11
- dynamsoft_barcode_reader_bundle/dbr.py +72 -3
- dynamsoft_barcode_reader_bundle/dip.py +2 -2
- dynamsoft_barcode_reader_bundle/dnn.py +2 -2
- dynamsoft_barcode_reader_bundle/libDynamsoftBarcodeReader.dylib +0 -0
- dynamsoft_barcode_reader_bundle/libDynamsoftCaptureVisionRouter.dylib +0 -0
- dynamsoft_barcode_reader_bundle/libDynamsoftCore.dylib +0 -0
- dynamsoft_barcode_reader_bundle/libDynamsoftImageProcessing.dylib +0 -0
- dynamsoft_barcode_reader_bundle/libDynamsoftLicense.dylib +0 -0
- dynamsoft_barcode_reader_bundle/libDynamsoftNeuralNetwork.dylib +0 -0
- dynamsoft_barcode_reader_bundle/libDynamsoftUtility.dylib +0 -0
- dynamsoft_barcode_reader_bundle/license.py +2 -2
- dynamsoft_barcode_reader_bundle/utility.py +35 -5
- {dynamsoft_barcode_reader_bundle-11.2.5000.dist-info → dynamsoft_barcode_reader_bundle-11.4.1000.dist-info}/METADATA +5 -3
- dynamsoft_barcode_reader_bundle-11.4.1000.dist-info/RECORD +37 -0
- dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/RECORD +0 -33
- {dynamsoft_barcode_reader_bundle-11.2.5000.dist-info → dynamsoft_barcode_reader_bundle-11.4.1000.dist-info}/WHEEL +0 -0
- {dynamsoft_barcode_reader_bundle-11.2.5000.dist-info → dynamsoft_barcode_reader_bundle-11.4.1000.dist-info}/licenses/LICENSE.txt +0 -0
- {dynamsoft_barcode_reader_bundle-11.2.5000.dist-info → dynamsoft_barcode_reader_bundle-11.4.1000.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "4.0.40.
|
|
1
|
+
__version__ = "4.0.40.7449"
|
|
2
2
|
|
|
3
3
|
import sys
|
|
4
4
|
|
|
@@ -288,6 +288,7 @@ class EnumRegionObjectElementType(IntEnum):
|
|
|
288
288
|
ROET_SOURCE_IMAGE = _DynamsoftCore.ROET_SOURCE_IMAGE
|
|
289
289
|
ROET_TARGET_ROI = _DynamsoftCore.ROET_TARGET_ROI
|
|
290
290
|
ROET_ENHANCED_IMAGE = _DynamsoftCore.ROET_ENHANCED_IMAGE
|
|
291
|
+
ROET_AUXILIARY_REGION = _DynamsoftCore.ROET_AUXILIARY_REGION
|
|
291
292
|
class EnumTransformMatrixType(IntEnum):
|
|
292
293
|
TMT_LOCAL_TO_ORIGINAL_IMAGE = _DynamsoftCore.TMT_LOCAL_TO_ORIGINAL_IMAGE
|
|
293
294
|
TMT_ORIGINAL_TO_LOCAL_IMAGE = _DynamsoftCore.TMT_ORIGINAL_TO_LOCAL_IMAGE
|
|
@@ -331,7 +332,7 @@ class CoreModule:
|
|
|
331
332
|
Returns:
|
|
332
333
|
str: A string representing the version of the core module.
|
|
333
334
|
"""
|
|
334
|
-
return __version__ + " (
|
|
335
|
+
return __version__ + " (Algorithm " + _DynamsoftCore.CCoreModule_GetVersion() + ")"
|
|
335
336
|
|
|
336
337
|
|
|
337
338
|
def __init__(self):
|
|
@@ -969,7 +970,9 @@ class CapturedResultItem:
|
|
|
969
970
|
Returns:
|
|
970
971
|
CapturedResultItem: The referenced item in the captured result item.
|
|
971
972
|
"""
|
|
972
|
-
|
|
973
|
+
if not hasattr(self, '_ref_item'):
|
|
974
|
+
self._ref_item = _DynamsoftCore.CCapturedResultItem_GetReferenceItem(self)
|
|
975
|
+
return self._ref_item
|
|
973
976
|
|
|
974
977
|
def get_target_roi_def_name(self) -> str:
|
|
975
978
|
"""
|
|
@@ -1656,6 +1659,72 @@ class PredetectedRegionElement(RegionObjectElement):
|
|
|
1656
1659
|
return _DynamsoftCore.CPredetectedRegionElement_GetLabelName(self)
|
|
1657
1660
|
|
|
1658
1661
|
_DynamsoftCore.CPredetectedRegionElement_register(PredetectedRegionElement)
|
|
1662
|
+
|
|
1663
|
+
class AuxiliaryRegionElement(RegionObjectElement):
|
|
1664
|
+
"""
|
|
1665
|
+
The AuxiliaryRegionElement class represents a region element that is auxiliary to a predetected region element.
|
|
1666
|
+
It is a subclass of the CRegionObjectElement.
|
|
1667
|
+
|
|
1668
|
+
Methods:
|
|
1669
|
+
get_name(self) -> str: Gets the name of this auxiliary region.
|
|
1670
|
+
get_confidence(self) -> int: Gets the confidence level of this auxiliary region detection.
|
|
1671
|
+
set_name(self, name: str) -> None: Sets the name/type of this auxiliary region.
|
|
1672
|
+
set_location(self, location: Quadrilateral) -> int: Sets the location of the auxiliary region element.
|
|
1673
|
+
set_confidence(self, confidence: int) -> None: Sets the confidence level of this auxiliary region detection.
|
|
1674
|
+
"""
|
|
1675
|
+
def __init__(self):
|
|
1676
|
+
_DynamsoftCore.Class_init(self, _DynamsoftCore.CImageProcessingModule_CreateAuxiliaryRegionElement())
|
|
1677
|
+
|
|
1678
|
+
def get_name(self) -> str:
|
|
1679
|
+
"""
|
|
1680
|
+
Gets the name of this auxiliary region.
|
|
1681
|
+
|
|
1682
|
+
Returns:
|
|
1683
|
+
Returns a string representing the region name (e.g., "PortraitZone", "SignatureArea").
|
|
1684
|
+
"""
|
|
1685
|
+
return _DynamsoftCore.CAuxiliaryRegionElement_GetName(self)
|
|
1686
|
+
|
|
1687
|
+
def get_confidence(self) -> int:
|
|
1688
|
+
"""
|
|
1689
|
+
Gets the confidence level of this auxiliary region detection.
|
|
1690
|
+
|
|
1691
|
+
Returns:
|
|
1692
|
+
Returns the confidence value, typically in the range [0, 100].
|
|
1693
|
+
"""
|
|
1694
|
+
return _DynamsoftCore.CAuxiliaryRegionElement_GetConfidence(self)
|
|
1695
|
+
|
|
1696
|
+
def set_name(self, name: str) -> None:
|
|
1697
|
+
"""
|
|
1698
|
+
Sets the name/type of this auxiliary region.
|
|
1699
|
+
|
|
1700
|
+
Args:
|
|
1701
|
+
name(str): The region name to set (e.g., "PortraitZone", "SignatureArea").
|
|
1702
|
+
"""
|
|
1703
|
+
_DynamsoftCore.CAuxiliaryRegionElement_SetName(self, name)
|
|
1704
|
+
|
|
1705
|
+
def set_location(self, location: Quadrilateral) -> int:
|
|
1706
|
+
"""
|
|
1707
|
+
Sets the location of this auxiliary region.
|
|
1708
|
+
|
|
1709
|
+
Args:
|
|
1710
|
+
location(Quadrilateral): A quadrilateral defining the region boundaries.
|
|
1711
|
+
|
|
1712
|
+
Returns:
|
|
1713
|
+
Returns 0 if success, otherwise an error code.
|
|
1714
|
+
"""
|
|
1715
|
+
return _DynamsoftCore.CAuxiliaryRegionElement_SetLocation(self, location)
|
|
1716
|
+
|
|
1717
|
+
def set_confidence(self, confidence: int) -> None:
|
|
1718
|
+
"""
|
|
1719
|
+
Sets the confidence level of this auxiliary region detection.
|
|
1720
|
+
|
|
1721
|
+
Args:
|
|
1722
|
+
confidence(int): The confidence value to set, typically in the range [0, 100].
|
|
1723
|
+
"""
|
|
1724
|
+
return _DynamsoftCore.CAuxiliaryRegionElement_SetConfidence(self, confidence)
|
|
1725
|
+
|
|
1726
|
+
_DynamsoftCore.CAuxiliaryRegionElement_register(AuxiliaryRegionElement)
|
|
1727
|
+
|
|
1659
1728
|
class IntermediateResultUnit:
|
|
1660
1729
|
"""
|
|
1661
1730
|
The IntermediateResultUnit class represents an intermediate result unit used in image processing.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "3.
|
|
1
|
+
__version__ = "3.4.10.7449"
|
|
2
2
|
|
|
3
3
|
if __package__ or "." in __name__:
|
|
4
4
|
from .core import *
|
|
@@ -218,11 +218,9 @@ class CapturedResult(CapturedResultBase):
|
|
|
218
218
|
Returns:
|
|
219
219
|
A list of CapturedResultItem objects with all items in the captured result.
|
|
220
220
|
"""
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
list.append(_DynamsoftCaptureVisionRouter.CCapturedResult_GetItem(self, i))
|
|
225
|
-
return list
|
|
221
|
+
if not hasattr(self, '_items') or self._items is None:
|
|
222
|
+
self._items = _DynamsoftCaptureVisionRouter.CCapturedResult_GetItems(self)
|
|
223
|
+
return self._items
|
|
226
224
|
|
|
227
225
|
def __getitem__(self, index: int) -> CapturedResultItem:
|
|
228
226
|
return _DynamsoftCaptureVisionRouter.CCapturedResult_GetItem(self, index)
|
|
@@ -721,7 +719,7 @@ class IntermediateResultReceiver:
|
|
|
721
719
|
return _DynamsoftCaptureVisionRouter.CIntermediateResultReceiver_OnRawTextLinesUnitReceived(self, result, info)
|
|
722
720
|
|
|
723
721
|
def on_logic_lines_unit_received(self, result: "LogicLinesUnit", info: IntermediateResultExtraInfo) -> None:
|
|
724
|
-
return _DynamsoftCaptureVisionRouter.CIntermediateResultReceiver_OnLogicLinesUnitReceived(self, result)
|
|
722
|
+
return _DynamsoftCaptureVisionRouter.CIntermediateResultReceiver_OnLogicLinesUnitReceived(self, result, info)
|
|
725
723
|
|
|
726
724
|
def on_enhanced_image_received(self, result: "EnhancedImageUnit", info: IntermediateResultExtraInfo) -> None:
|
|
727
725
|
return _DynamsoftCaptureVisionRouter.CIntermediateResultReceiver_OnEnhancedImageReceived(self, result, info)
|
|
@@ -804,6 +802,7 @@ class CaptureVisionRouter:
|
|
|
804
802
|
)
|
|
805
803
|
self._input = None
|
|
806
804
|
self._intermediate_result_manager = None
|
|
805
|
+
self._cross_filter = []
|
|
807
806
|
__destroy__ = _DynamsoftCaptureVisionRouter.delete_CCaptureVisionRouter
|
|
808
807
|
|
|
809
808
|
def init_settings(self, content: str) -> Tuple[int, str]:
|
|
@@ -1081,6 +1080,9 @@ class CaptureVisionRouter:
|
|
|
1081
1080
|
- error_code (int): The error code indicating the status of the operation.
|
|
1082
1081
|
- error_message <str>: A descriptive message explaining the error.
|
|
1083
1082
|
"""
|
|
1083
|
+
if any(filter is x for x in self._cross_filter):
|
|
1084
|
+
return (0, "Success.")
|
|
1085
|
+
self._cross_filter.append(filter)
|
|
1084
1086
|
return _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_AddResultFilter(
|
|
1085
1087
|
self, filter
|
|
1086
1088
|
)
|
|
@@ -1097,9 +1099,17 @@ class CaptureVisionRouter:
|
|
|
1097
1099
|
- error_code (int): The error code indicating the status of the operation.
|
|
1098
1100
|
- error_message <str>: A descriptive message explaining the error.
|
|
1099
1101
|
"""
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1102
|
+
index = -1
|
|
1103
|
+
for i, x in enumerate(self._cross_filter):
|
|
1104
|
+
if x is filter:
|
|
1105
|
+
index = i
|
|
1106
|
+
break
|
|
1107
|
+
if index != -1:
|
|
1108
|
+
self._cross_filter.pop(index)
|
|
1109
|
+
return _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_RemoveResultFilter(
|
|
1110
|
+
self, filter
|
|
1111
|
+
)
|
|
1112
|
+
return (0, "Success.")
|
|
1103
1113
|
def add_capture_state_listener(
|
|
1104
1114
|
self, listener: CaptureStateListener
|
|
1105
1115
|
) -> Tuple[int, str]:
|
|
@@ -1322,7 +1332,7 @@ class CaptureVisionRouterModule:
|
|
|
1322
1332
|
Returns:
|
|
1323
1333
|
A string representing the version of the capture vision router module.
|
|
1324
1334
|
"""
|
|
1325
|
-
return __version__ + " (
|
|
1335
|
+
return __version__ + " (Algorithm " + _DynamsoftCaptureVisionRouter.CCaptureVisionRouterModule_GetVersion() + ")"
|
|
1326
1336
|
|
|
1327
1337
|
def __init__(self):
|
|
1328
1338
|
_DynamsoftCaptureVisionRouter.Class_init(
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "11.
|
|
1
|
+
__version__ = "11.4.10.7449"
|
|
2
2
|
|
|
3
3
|
if __package__ or "." in __name__:
|
|
4
4
|
from .core import *
|
|
@@ -672,6 +672,48 @@ class AztecDetails(BarcodeDetails):
|
|
|
672
672
|
|
|
673
673
|
|
|
674
674
|
_DynamsoftBarcodeReader.CAztecDetails_register(AztecDetails)
|
|
675
|
+
class ECISegment:
|
|
676
|
+
"""
|
|
677
|
+
Represents the Extended Channel Interpretation (ECI) information within a barcode.
|
|
678
|
+
|
|
679
|
+
Attributes:
|
|
680
|
+
eci_value (int): ECI assignment number as defined by ISO/IEC 15424.
|
|
681
|
+
charset_encoding (str): Charset encoding name defined by IANA (e.g. "UTF-8", "ISO-8859-1").
|
|
682
|
+
start_index (int): Start index of this ECI segment in the decoded barcode bytes.
|
|
683
|
+
length (int): Length (in bytes) of this segment within the decoded barcode bytes.
|
|
684
|
+
"""
|
|
685
|
+
_thisown = property(
|
|
686
|
+
lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag"
|
|
687
|
+
)
|
|
688
|
+
eci_value: int = property(
|
|
689
|
+
_DynamsoftBarcodeReader.CECISegment_eciValue_get,
|
|
690
|
+
_DynamsoftBarcodeReader.CECISegment_eciValue_set,
|
|
691
|
+
doc="ECI assignment number as defined by ISO/IEC 15424.",
|
|
692
|
+
)
|
|
693
|
+
charset_encoding: str = property(
|
|
694
|
+
_DynamsoftBarcodeReader.CECISegment_charsetEncoding_get,
|
|
695
|
+
_DynamsoftBarcodeReader.CECISegment_charsetEncoding_set,
|
|
696
|
+
doc="Charset encoding name defined by IANA (e.g. \"UTF-8\", \"ISO-8859-1\").",
|
|
697
|
+
)
|
|
698
|
+
start_index: int = property(
|
|
699
|
+
_DynamsoftBarcodeReader.CECISegment_startIndex_get,
|
|
700
|
+
_DynamsoftBarcodeReader.CECISegment_startIndex_set,
|
|
701
|
+
doc="Start index of this ECI segment in the decoded barcode bytes.",
|
|
702
|
+
)
|
|
703
|
+
length: int = property(
|
|
704
|
+
_DynamsoftBarcodeReader.CECISegment_length_get,
|
|
705
|
+
_DynamsoftBarcodeReader.CECISegment_length_set,
|
|
706
|
+
doc="Length (in bytes) of this segment within the decoded barcode bytes.",
|
|
707
|
+
)
|
|
708
|
+
def __init__(self):
|
|
709
|
+
_DynamsoftBarcodeReader.Class_init(
|
|
710
|
+
self, _DynamsoftBarcodeReader.new_CECISegment()
|
|
711
|
+
)
|
|
712
|
+
|
|
713
|
+
__destroy__ = _DynamsoftBarcodeReader.delete_CECISegment
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
_DynamsoftBarcodeReader.CECISegment_register(ECISegment)
|
|
675
717
|
|
|
676
718
|
class BarcodeResultItem(CapturedResultItem):
|
|
677
719
|
"""
|
|
@@ -689,6 +731,7 @@ class BarcodeResultItem(CapturedResultItem):
|
|
|
689
731
|
get_details(self) -> BarcodeDetails: Gets the details of the decoded barcode result.
|
|
690
732
|
is_dpm(self) -> bool: Gets whether the decoded barcode is a DPM code.
|
|
691
733
|
is_mirrored(self) -> bool: Gets whether the decoded barcode is mirrored.
|
|
734
|
+
get_eci_segments(self) -> List[ECISegment]: Gets all the ECI segments in the barcode.
|
|
692
735
|
"""
|
|
693
736
|
_thisown = property(
|
|
694
737
|
lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag"
|
|
@@ -796,7 +839,20 @@ class BarcodeResultItem(CapturedResultItem):
|
|
|
796
839
|
"""
|
|
797
840
|
return _DynamsoftBarcodeReader.CBarcodeResultItem_IsMirrored(self)
|
|
798
841
|
|
|
842
|
+
def get_eci_segments(self) -> List[ECISegment]:
|
|
843
|
+
"""
|
|
844
|
+
Gets all the ECI segments in the barcode.
|
|
799
845
|
|
|
846
|
+
Returns:
|
|
847
|
+
A list of ECISegment objects.
|
|
848
|
+
"""
|
|
849
|
+
count = _DynamsoftBarcodeReader.CBarcodeResultItem_GetECISegmentsCount(self)
|
|
850
|
+
result = []
|
|
851
|
+
for i in range(count):
|
|
852
|
+
eci = _DynamsoftBarcodeReader.CBarcodeResultItem_GetECISegment(self, i)
|
|
853
|
+
if eci is not None:
|
|
854
|
+
result.append(eci)
|
|
855
|
+
return result
|
|
800
856
|
_DynamsoftBarcodeReader.CBarcodeResultItem_register(BarcodeResultItem)
|
|
801
857
|
|
|
802
858
|
class DecodedBarcodesResult(CapturedResultBase):
|
|
@@ -923,8 +979,21 @@ class DecodedBarcodeElement(RegionObjectElement):
|
|
|
923
979
|
def set_location(self, location: Quadrilateral) -> int:
|
|
924
980
|
return _DynamsoftBarcodeReader.CDecodedBarcodeElement_SetLocation(self, location)
|
|
925
981
|
|
|
982
|
+
def get_eci_segments(self) -> List[ECISegment]:
|
|
983
|
+
"""
|
|
984
|
+
Gets all the ECI segments in the barcode.
|
|
985
|
+
|
|
986
|
+
Returns:
|
|
987
|
+
A list of ECISegment objects.
|
|
988
|
+
"""
|
|
989
|
+
count = _DynamsoftBarcodeReader.CDecodedBarcodeElement_GetECISegmentsCount(self)
|
|
990
|
+
result = []
|
|
991
|
+
for i in range(count):
|
|
992
|
+
eci = _DynamsoftBarcodeReader.CDecodedBarcodeElement_GetECISegment(self, i)
|
|
993
|
+
if eci is not None:
|
|
994
|
+
result.append(eci)
|
|
995
|
+
return result
|
|
926
996
|
|
|
927
|
-
# Register CDecodedBarcodeElement in _DynamsoftBarcodeReader:
|
|
928
997
|
_DynamsoftBarcodeReader.CDecodedBarcodeElement_register(DecodedBarcodeElement)
|
|
929
998
|
class ExtendedBarcodeResult(DecodedBarcodeElement):
|
|
930
999
|
_thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
|
@@ -1141,7 +1210,7 @@ class BarcodeReaderModule:
|
|
|
1141
1210
|
Returns:
|
|
1142
1211
|
A string representing the version of the barcode reader module.
|
|
1143
1212
|
"""
|
|
1144
|
-
return __version__ + " (
|
|
1213
|
+
return __version__ + " (Algorithm " + _DynamsoftBarcodeReader.CBarcodeReaderModule_GetVersion() + ")"
|
|
1145
1214
|
|
|
1146
1215
|
def __init__(self):
|
|
1147
1216
|
_DynamsoftBarcodeReader.Class_init(
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "3.0.30.
|
|
1
|
+
__version__ = "3.0.30.7449"
|
|
2
2
|
|
|
3
3
|
if __package__ or "." in __name__:
|
|
4
4
|
from . import _DynamsoftImageProcessing
|
|
@@ -21,4 +21,4 @@ class DynamsoftImageProcessingModule:
|
|
|
21
21
|
Returns:
|
|
22
22
|
A string representing the version of the Dynamsoft Image Processing module.
|
|
23
23
|
"""
|
|
24
|
-
return __version__ + " (
|
|
24
|
+
return __version__ + " (Algorithm " + _DynamsoftImageProcessing.getversion() + ")"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "2.0.30.
|
|
1
|
+
__version__ = "2.0.30.7158"
|
|
2
2
|
|
|
3
3
|
if __package__ or "." in __name__:
|
|
4
4
|
from . import _DynamsoftNeuralNetwork
|
|
@@ -21,4 +21,4 @@ class DynamsoftNeuralNetworkModule:
|
|
|
21
21
|
Returns:
|
|
22
22
|
A string representing the version of the Dynamsoft Neural Network module.
|
|
23
23
|
"""
|
|
24
|
-
return __version__ + " (
|
|
24
|
+
return __version__ + " (Algorithm " + _DynamsoftNeuralNetwork.getversion() + ")"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "4.0.30.
|
|
1
|
+
__version__ = "4.0.30.7449"
|
|
2
2
|
|
|
3
3
|
if __package__ or "." in __name__:
|
|
4
4
|
from . import _DynamsoftLicense
|
|
@@ -133,7 +133,7 @@ class LicenseModule:
|
|
|
133
133
|
Returns:
|
|
134
134
|
A string representing the version of the Dynamsoft License module.
|
|
135
135
|
"""
|
|
136
|
-
return __version__ + " (
|
|
136
|
+
return __version__ + " (Algorithm " + _DynamsoftLicense.CLicenseModule_GetVersion() + ")"
|
|
137
137
|
|
|
138
138
|
def __init__(self):
|
|
139
139
|
_DynamsoftLicense.Class_init(
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "2.0.40.
|
|
1
|
+
__version__ = "2.0.40.7449"
|
|
2
2
|
|
|
3
3
|
if __package__ or "." in __name__:
|
|
4
4
|
from .cvr import *
|
|
@@ -44,7 +44,7 @@ class UtilityModule:
|
|
|
44
44
|
Returns:
|
|
45
45
|
A string representing the version of the utility module.
|
|
46
46
|
"""
|
|
47
|
-
return __version__ + " (
|
|
47
|
+
return __version__ + " (Algorithm " + _DynamsoftUtility.CUtilityModule_GetVersion() + ")"
|
|
48
48
|
|
|
49
49
|
def __init__(self):
|
|
50
50
|
_DynamsoftUtility.Class_init(
|
|
@@ -219,6 +219,30 @@ class MultiFrameResultCrossFilter(CapturedResultFilter):
|
|
|
219
219
|
self, type
|
|
220
220
|
)
|
|
221
221
|
|
|
222
|
+
def set_result_cross_verification_criteria(self, result_item_types: int, frame_window: int, min_consistent_frames: int) -> None:
|
|
223
|
+
"""
|
|
224
|
+
This function allows customization of the multi-frame verification parameters,
|
|
225
|
+
controlling how many frames are analyzed and how many consistent results are required.
|
|
226
|
+
|
|
227
|
+
Args:
|
|
228
|
+
result_item_types (int): A bitwise OR combination of one or more values from the EnumCapturedResultItemType enumeration.
|
|
229
|
+
frame_window (int): The number of frames to consider for cross-verification.
|
|
230
|
+
min_consistent_frames (int): The minimum number of frames that must contain consistent results for verification to succeed.
|
|
231
|
+
"""
|
|
232
|
+
return _DynamsoftUtility.CMultiFrameResultCrossFilter_SetResultCrossVerificationCriteria(self, result_item_types, frame_window, min_consistent_frames)
|
|
233
|
+
|
|
234
|
+
def get_result_cross_verification_criteria(self, result_item_type: EnumCapturedResultItemType) -> Tuple[int, int]:
|
|
235
|
+
"""
|
|
236
|
+
Gets the cross-verification criteria for a specified result item type.
|
|
237
|
+
|
|
238
|
+
Args:
|
|
239
|
+
result_item_type (int): The result item type to query (CapturedResultItemType value).
|
|
240
|
+
|
|
241
|
+
Returns:
|
|
242
|
+
A tuple containing the frame window size and the minimum consistent frames.
|
|
243
|
+
"""
|
|
244
|
+
return _DynamsoftUtility.CMultiFrameResultCrossFilter_GetResultCrossVerificationCriteria(self, result_item_type)
|
|
245
|
+
|
|
222
246
|
_DynamsoftUtility.CMultiFrameResultCrossFilter_register(MultiFrameResultCrossFilter)
|
|
223
247
|
|
|
224
248
|
class ProactiveImageSourceAdapter(ImageSourceAdapter, ABC):
|
|
@@ -594,13 +618,19 @@ class ImageIO:
|
|
|
594
618
|
elif format == EnumImagePixelFormat.IPF_BGR_888:
|
|
595
619
|
arr = np.frombuffer(image_bytes, dtype=np.uint8).reshape((height, width, 3))
|
|
596
620
|
arr = arr[:, :, ::-1]
|
|
621
|
+
elif format == EnumImagePixelFormat.IPF_GRAYSCALED \
|
|
622
|
+
or format == EnumImagePixelFormat.IPF_BINARY \
|
|
623
|
+
or format == EnumImagePixelFormat.IPF_BINARYINVERTED \
|
|
624
|
+
or format == EnumImagePixelFormat.IPF_BINARY_8 \
|
|
625
|
+
or format == EnumImagePixelFormat.IPF_BINARY_8_INVERTED:
|
|
626
|
+
arr = np.frombuffer(image_bytes, dtype=np.uint8).reshape((height, width))
|
|
597
627
|
else:
|
|
598
628
|
err = EnumErrorCode.EC_IMAGE_PIXEL_FORMAT_NOT_MATCH
|
|
599
629
|
if __package__ or "." in __name__:
|
|
600
630
|
from . import _DynamsoftCore
|
|
601
631
|
else:
|
|
602
632
|
import _DynamsoftCore
|
|
603
|
-
err_str = _DynamsoftCore.DC_GetErrorString()
|
|
633
|
+
err_str = _DynamsoftCore.DC_GetErrorString(err)
|
|
604
634
|
arr = None
|
|
605
635
|
return err, err_str, arr
|
|
606
636
|
|
|
@@ -785,14 +815,14 @@ class ImageProcessor:
|
|
|
785
815
|
"""
|
|
786
816
|
return _DynamsoftUtility.CImageProcessor_ConvertToBinaryGlobal(self, image_data, threshold, invert)
|
|
787
817
|
|
|
788
|
-
def convert_to_binary_local(self, image_data: ImageData, block_size: int = 0, compensation: int =
|
|
818
|
+
def convert_to_binary_local(self, image_data: ImageData, block_size: int = 0, compensation: int = 10, invert: bool = False) ->ImageData:
|
|
789
819
|
"""
|
|
790
820
|
Converts a grayscale image to binary image using local (adaptive) binarization.
|
|
791
821
|
|
|
792
822
|
Args:
|
|
793
823
|
image_data (ImageData): The image data to be converted.
|
|
794
824
|
block_size (int): Size of the block for local binarization (default is 0).
|
|
795
|
-
compensation (int): Adjustment value to modify the threshold (default is
|
|
825
|
+
compensation (int): Adjustment value to modify the threshold (default is 10).
|
|
796
826
|
invert (bool): If true, invert the binary image (black becomes white and white becomes black).
|
|
797
827
|
|
|
798
828
|
Returns:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dynamsoft_barcode_reader_bundle
|
|
3
|
-
Version: 11.
|
|
3
|
+
Version: 11.4.1000
|
|
4
4
|
Summary: Dynamsoft Barcode Reader SDK for Python
|
|
5
5
|
Home-page: https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi
|
|
6
6
|
Author: Dynamsoft
|
|
@@ -15,7 +15,7 @@ Dynamsoft Barcode Reader SDK for Python
|
|
|
15
15
|
|version| |python| |pypi|
|
|
16
16
|
|
|
17
17
|
.. |version| image:: https://img.shields.io/pypi/v/dynamsoft_barcode_reader_bundle?color=orange
|
|
18
|
-
.. |python| image:: https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue
|
|
18
|
+
.. |python| image:: https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue
|
|
19
19
|
.. |pypi| image:: https://img.shields.io/pypi/dm/dynamsoft_barcode_reader_bundle
|
|
20
20
|
|
|
21
21
|
|
|
@@ -50,7 +50,7 @@ which is newly established to aggregate the features of functional products powe
|
|
|
50
50
|
Version
|
|
51
51
|
-------
|
|
52
52
|
|
|
53
|
-
- 11.
|
|
53
|
+
- 11.4.1000
|
|
54
54
|
|
|
55
55
|
Supported Platforms
|
|
56
56
|
-------------------
|
|
@@ -63,6 +63,8 @@ Supported Platforms
|
|
|
63
63
|
|
|
64
64
|
Supported Python Versions
|
|
65
65
|
-------------------------
|
|
66
|
+
- Python3.14
|
|
67
|
+
|
|
66
68
|
- Python3.13
|
|
67
69
|
|
|
68
70
|
- Python3.12
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
dynamsoft_barcode_reader_bundle/_DynamsoftBarcodeReader.cpython-313-darwin.so,sha256=voxUIHSYty4FA0ZonRtl7tV8EM4me3a0YHYKSetF0fE,670202
|
|
2
|
+
dynamsoft_barcode_reader_bundle/_DynamsoftCaptureVisionRouter.cpython-313-darwin.so,sha256=SyUxIM6axpD1BRbUPYDCpqnoqm3ZOKSdEQcdhvvZYLY,768064
|
|
3
|
+
dynamsoft_barcode_reader_bundle/_DynamsoftCore.cpython-313-darwin.so,sha256=J5teAogjUUbktl4zvBMBwIKqgK1mf20YSSvjYrGRTdQ,790929
|
|
4
|
+
dynamsoft_barcode_reader_bundle/_DynamsoftImageProcessing.cpython-313-darwin.so,sha256=Agg66xgt_Q3LSl7Y32-XcHumUvE6fJ9NsbXklC90DcI,120316
|
|
5
|
+
dynamsoft_barcode_reader_bundle/_DynamsoftLicense.cpython-313-darwin.so,sha256=nF0MLe0_PTXMa16xksLBbaPxqCnn2x5xNeG1YNOIw2M,184404
|
|
6
|
+
dynamsoft_barcode_reader_bundle/_DynamsoftUtility.cpython-313-darwin.so,sha256=cYypjG-mUqfubvhIDCKfyDiMBU206ROKAXEPFkwat7U,359028
|
|
7
|
+
dynamsoft_barcode_reader_bundle/__init__.py,sha256=nV3Bz0XaKXK1M5EvajamYPY_KdVKEZ9zrj0vlLEmuRE,150
|
|
8
|
+
dynamsoft_barcode_reader_bundle/core.py,sha256=2FYaCmUdA6ntZ_lS0-6AiLI7au0Rzo8V4mPKI4wz2Wo,112286
|
|
9
|
+
dynamsoft_barcode_reader_bundle/cvr.py,sha256=2AoAicELdi8n0FOqWXZThpJ1z8Wqyi_8PWkTtdb9atU,65542
|
|
10
|
+
dynamsoft_barcode_reader_bundle/dbr.py,sha256=Eey83sb8eAPVPJrGK3bF_1atdKuxqEQPbYExa_wy0fM,57792
|
|
11
|
+
dynamsoft_barcode_reader_bundle/dip.py,sha256=WR8DSrlQVbXeq9-NdnP0vKK7pMqiAN6EfgcfXyIhgZM,741
|
|
12
|
+
dynamsoft_barcode_reader_bundle/dnn.py,sha256=mGkKdAlcLFBFlYgFXXMQ83aiAV-Nd5OOzIUZmfUgQ0E,723
|
|
13
|
+
dynamsoft_barcode_reader_bundle/libDynamicPdf.dylib,sha256=Q_NAoEuB-Qk-YswXdSCdlGxIL_IFvuwYZFFeQa9GvHQ,14274384
|
|
14
|
+
dynamsoft_barcode_reader_bundle/libDynamsoftBarcodeReader.dylib,sha256=YELpwu7IyvZ4T6f8qmQP9bZGrYhLTKOwYwIJsR9wPAo,18633088
|
|
15
|
+
dynamsoft_barcode_reader_bundle/libDynamsoftCaptureVisionRouter.dylib,sha256=2sEdBHAJEt947KxaPIKeT_Tw7UhR5RX6RsuVjHMWajM,1256896
|
|
16
|
+
dynamsoft_barcode_reader_bundle/libDynamsoftCore.dylib,sha256=AT00YiGvP1HETcNW8ku-x42SzH9jEcmzR2xwfqX0o1s,1353392
|
|
17
|
+
dynamsoft_barcode_reader_bundle/libDynamsoftImageProcessing.dylib,sha256=UAktaeWzo75bUv2IgnW-R01v3KJDVlihiVY41p10qz8,18229264
|
|
18
|
+
dynamsoft_barcode_reader_bundle/libDynamsoftLicense.dylib,sha256=fKn6fgUuWeXEr-hI41uwWOqwQB3Irh8zzmR1UrmMU6s,6709424
|
|
19
|
+
dynamsoft_barcode_reader_bundle/libDynamsoftNeuralNetwork.dylib,sha256=iSXQjbeJnhnmPzBIN7x-21r5RlDZ97T2xQZ7gFaRgAg,6217376
|
|
20
|
+
dynamsoft_barcode_reader_bundle/libDynamsoftUtility.dylib,sha256=9Vph9iTf3d1ixfkXKaF-MiP3tPJ35X8sc402pRFinJY,406928
|
|
21
|
+
dynamsoft_barcode_reader_bundle/license.py,sha256=rv73uONtwVynnI_c1RYj7KWoVp3DYhiLVRY3H3HX0T0,5277
|
|
22
|
+
dynamsoft_barcode_reader_bundle/utility.py,sha256=LzXWq0nu6KljrxZQ9PNgniqEKqBehihwFJJ1JgxVzcA,38224
|
|
23
|
+
dynamsoft_barcode_reader_bundle/Models/Code128Decoder.data,sha256=InKC24_9EKSJBk4WRQOT-3GECqAdpPe4oNLWKA1vLv8,649136
|
|
24
|
+
dynamsoft_barcode_reader_bundle/Models/Code39ITFDecoder.data,sha256=8U4ST1zYMAsAmytQYBoBgF30lzd7MRjIARsQr0ehis4,1264984
|
|
25
|
+
dynamsoft_barcode_reader_bundle/Models/DataMatrixQRCodeDeblur.data,sha256=8btAhGj_cduSzI0muXQv5zgGeEM9UbC9TPD7e9OmY3Y,1755183
|
|
26
|
+
dynamsoft_barcode_reader_bundle/Models/DataMatrixQRCodeLocalization.data,sha256=HrU0ZwYxqponmY5eIjtv6sMk_UnrWtflQ7p-Ok_0RmM,998425
|
|
27
|
+
dynamsoft_barcode_reader_bundle/Models/EAN13Decoder.data,sha256=LvOyzH0UMEAFEZXsE0_N3kllxF4V-Yg9pKU3SXpi9LE,652211
|
|
28
|
+
dynamsoft_barcode_reader_bundle/Models/OneDDeblur.data,sha256=uNM2NFdLZKgV16xqCj_KeR1CbLTaNua-1gLw8F7dPcQ,1758189
|
|
29
|
+
dynamsoft_barcode_reader_bundle/Models/OneDLocalization.data,sha256=WNOEheKpD6pwBzIodlHgoiQ2r7p1QQqKWKrgFM3hBv4,1121723
|
|
30
|
+
dynamsoft_barcode_reader_bundle/Models/PDF417Deblur.data,sha256=61f190r6fEUe1uLY0yrJnUIVCo_q4NAdaW0zNVQNyxs,1804020
|
|
31
|
+
dynamsoft_barcode_reader_bundle/Models/PDF417Localization.data,sha256=BWDn9dHzzsawU-BfZZ6iKiUE7sqGJXlURATE1gmTddY,998076
|
|
32
|
+
dynamsoft_barcode_reader_bundle/Templates/DBR-PresetTemplates.json,sha256=RkRKkNujuMgW7Xpobgji09iInGwLIvleERNhNwkbsog,18382
|
|
33
|
+
dynamsoft_barcode_reader_bundle-11.4.1000.dist-info/licenses/LICENSE.txt,sha256=550pqHw_wTvF-jK6fIoa1D3Lo7EXYG-3xW2GUDyBTXA,53
|
|
34
|
+
dynamsoft_barcode_reader_bundle-11.4.1000.dist-info/METADATA,sha256=7uJSGw6gBUh2BHfV67fg3_tBQrJxZcDblJUJJvsi7nY,4750
|
|
35
|
+
dynamsoft_barcode_reader_bundle-11.4.1000.dist-info/WHEEL,sha256=a5euBUjc8kIdA0dE1PizxMZ3yGhwYfgtCw3IOHxJ2LM,114
|
|
36
|
+
dynamsoft_barcode_reader_bundle-11.4.1000.dist-info/top_level.txt,sha256=ANZI7fujUpH3xOwwBwVGUmxhXkXpJaNyLC3Kj3RgZ34,163
|
|
37
|
+
dynamsoft_barcode_reader_bundle-11.4.1000.dist-info/RECORD,,
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
dynamsoft_barcode_reader_bundle/_DynamsoftBarcodeReader.cpython-313-darwin.so,sha256=KIBsKyqhyjlTP-neGkI1ZE5zt_qFyPFhj7l827ubvZI,617674
|
|
2
|
-
dynamsoft_barcode_reader_bundle/_DynamsoftCaptureVisionRouter.cpython-313-darwin.so,sha256=7bQ1hwNmJnMuj1AKG7ywwIfrUOrZt4Dni5SaVFkW01k,765312
|
|
3
|
-
dynamsoft_barcode_reader_bundle/_DynamsoftCore.cpython-313-darwin.so,sha256=HWi_KtAmWUZu5HdSizcRDqrq7KQHmxwshMgwTZydwL4,788401
|
|
4
|
-
dynamsoft_barcode_reader_bundle/_DynamsoftImageProcessing.cpython-313-darwin.so,sha256=ZgPHBtapge4QMgMhQ0reD-Pnj69HZB1V4JON9687kIY,120316
|
|
5
|
-
dynamsoft_barcode_reader_bundle/_DynamsoftLicense.cpython-313-darwin.so,sha256=oR95329ilCL4gCLVIdIRZY-ckIwtj7seQugzD75PUIA,184404
|
|
6
|
-
dynamsoft_barcode_reader_bundle/_DynamsoftUtility.cpython-313-darwin.so,sha256=SwHkzV_n8dHHqLb54Nv0NycHsnz-zyO0lWVSUOb4ejk,321604
|
|
7
|
-
dynamsoft_barcode_reader_bundle/__init__.py,sha256=K0ac3UhIOzcjeKlSJ7SEj9N8cdYIwmuI1m3LkY5L2j4,150
|
|
8
|
-
dynamsoft_barcode_reader_bundle/core.py,sha256=TGId_fQu1XINiR-BQDxqfzpU91S6ZY6K_RprM1yvUPQ,109576
|
|
9
|
-
dynamsoft_barcode_reader_bundle/cvr.py,sha256=b5mTCrEQudkWN2CLIX090qkid-azlI1Tq82QGekXe7s,65177
|
|
10
|
-
dynamsoft_barcode_reader_bundle/dbr.py,sha256=F1SvFadnPJZ6GwhFO9Y1552E9w_j_M1eX49CQ77m7i0,54949
|
|
11
|
-
dynamsoft_barcode_reader_bundle/dip.py,sha256=n7rC-x8imqOQJcEvypTfn9kGe4j0JqnIQnm7r62QpaA,741
|
|
12
|
-
dynamsoft_barcode_reader_bundle/dnn.py,sha256=IJ-MhgNP044NsCE5v4HSk7h_uZCoyn80777XVnahwdg,723
|
|
13
|
-
dynamsoft_barcode_reader_bundle/libDynamicPdf.dylib,sha256=Q_NAoEuB-Qk-YswXdSCdlGxIL_IFvuwYZFFeQa9GvHQ,14274384
|
|
14
|
-
dynamsoft_barcode_reader_bundle/libDynamsoftBarcodeReader.dylib,sha256=S7SIzfgQU421evTqOVb8aO0z24yaITpVGdbwlyjEVgY,17744256
|
|
15
|
-
dynamsoft_barcode_reader_bundle/libDynamsoftCaptureVisionRouter.dylib,sha256=31uwaxe0RDhVx-ZcEGB4ja9Sw6-wGPDH2ZLa-yFmEOY,1253488
|
|
16
|
-
dynamsoft_barcode_reader_bundle/libDynamsoftCore.dylib,sha256=KIXi-1RvLtGVWHMlCzfJR2cVmPfTjMeA9fPeUfQaeMk,1352816
|
|
17
|
-
dynamsoft_barcode_reader_bundle/libDynamsoftImageProcessing.dylib,sha256=R21kw3KxAasYK0IyODWvo0_KXCiau2d462Of1gFTfrQ,18193264
|
|
18
|
-
dynamsoft_barcode_reader_bundle/libDynamsoftLicense.dylib,sha256=Sf5rodzl-En_nX4bIxKu-rcgH1avGIwQPAylitq8Yqw,6709456
|
|
19
|
-
dynamsoft_barcode_reader_bundle/libDynamsoftNeuralNetwork.dylib,sha256=kiE1Yv7HO2lJtK7DWK8A3yofOXBHR7Hj7FdNW2fSHOg,5771600
|
|
20
|
-
dynamsoft_barcode_reader_bundle/libDynamsoftUtility.dylib,sha256=O6Dsl9G39An97r7CbFURk3_sIdlnjMnxZ-T3z5KOFdc,405472
|
|
21
|
-
dynamsoft_barcode_reader_bundle/license.py,sha256=7g-L9FXshohn8MJyTkZya29WBub4JMRTptdT-CzqiW4,5277
|
|
22
|
-
dynamsoft_barcode_reader_bundle/utility.py,sha256=3P1zEvd4up9dRPBarFQpLf1tuQNFg0e7oKbLqo1irbQ,36357
|
|
23
|
-
dynamsoft_barcode_reader_bundle/Models/Code128Decoder.data,sha256=n-QdonspEfOfc5bOczeo_lGuZbqI7Y8u9boAZ4G5QbM,649098
|
|
24
|
-
dynamsoft_barcode_reader_bundle/Models/DataMatrixQRCodeLocalization.data,sha256=RH4A6NoLD9aMz2xZ_k03Eyss4rtqYMrwOcQd5oSn40w,998392
|
|
25
|
-
dynamsoft_barcode_reader_bundle/Models/EAN13Decoder.data,sha256=z9_XmjsD2f2RTQSxHKjNlJuC_nh3IIaFNSVsN5-pIRQ,652176
|
|
26
|
-
dynamsoft_barcode_reader_bundle/Models/OneDDeblur.data,sha256=7feeJdJtfhDHKAaVzfZu_irwKUwz0mNfJvo3cgPR4rc,1758196
|
|
27
|
-
dynamsoft_barcode_reader_bundle/Models/OneDLocalization.data,sha256=IefEN5N2NunE5NpvudVbd4nR_o1o2N0xRMJhYbYh0yk,1121730
|
|
28
|
-
dynamsoft_barcode_reader_bundle/Templates/DBR-PresetTemplates.json,sha256=RkRKkNujuMgW7Xpobgji09iInGwLIvleERNhNwkbsog,18382
|
|
29
|
-
dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/licenses/LICENSE.txt,sha256=550pqHw_wTvF-jK6fIoa1D3Lo7EXYG-3xW2GUDyBTXA,53
|
|
30
|
-
dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/METADATA,sha256=dChyZHwjMsp3Zmh5-0cX_UI0woJLDyNs-gGJUxiosZU,4722
|
|
31
|
-
dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/WHEEL,sha256=a5euBUjc8kIdA0dE1PizxMZ3yGhwYfgtCw3IOHxJ2LM,114
|
|
32
|
-
dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/top_level.txt,sha256=ANZI7fujUpH3xOwwBwVGUmxhXkXpJaNyLC3Kj3RgZ34,163
|
|
33
|
-
dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|