dynamsoft-barcode-reader-bundle 11.0.6000__cp310-cp310-macosx_12_0_universal2.whl → 11.2.5000__cp310-cp310-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.
Files changed (33) hide show
  1. dynamsoft_barcode_reader_bundle/Models/Code128Decoder.data +0 -0
  2. dynamsoft_barcode_reader_bundle/Models/DataMatrixQRCodeLocalization.data +0 -0
  3. dynamsoft_barcode_reader_bundle/Models/EAN13Decoder.data +0 -0
  4. dynamsoft_barcode_reader_bundle/Models/OneDDeblur.data +0 -0
  5. dynamsoft_barcode_reader_bundle/Models/OneDLocalization.data +0 -0
  6. dynamsoft_barcode_reader_bundle/Templates/DBR-PresetTemplates.json +16 -4
  7. dynamsoft_barcode_reader_bundle/_DynamsoftBarcodeReader.cpython-310-darwin.so +0 -0
  8. dynamsoft_barcode_reader_bundle/_DynamsoftCaptureVisionRouter.cpython-310-darwin.so +0 -0
  9. dynamsoft_barcode_reader_bundle/_DynamsoftCore.cpython-310-darwin.so +0 -0
  10. dynamsoft_barcode_reader_bundle/_DynamsoftImageProcessing.cpython-310-darwin.so +0 -0
  11. dynamsoft_barcode_reader_bundle/_DynamsoftLicense.cpython-310-darwin.so +0 -0
  12. dynamsoft_barcode_reader_bundle/_DynamsoftUtility.cpython-310-darwin.so +0 -0
  13. dynamsoft_barcode_reader_bundle/__init__.py +1 -1
  14. dynamsoft_barcode_reader_bundle/core.py +11 -3
  15. dynamsoft_barcode_reader_bundle/cvr.py +62 -4
  16. dynamsoft_barcode_reader_bundle/dbr.py +2 -1
  17. dynamsoft_barcode_reader_bundle/dip.py +1 -1
  18. dynamsoft_barcode_reader_bundle/dnn.py +1 -1
  19. dynamsoft_barcode_reader_bundle/libDynamsoftBarcodeReader.dylib +0 -0
  20. dynamsoft_barcode_reader_bundle/libDynamsoftCaptureVisionRouter.dylib +0 -0
  21. dynamsoft_barcode_reader_bundle/libDynamsoftCore.dylib +0 -0
  22. dynamsoft_barcode_reader_bundle/libDynamsoftImageProcessing.dylib +0 -0
  23. dynamsoft_barcode_reader_bundle/libDynamsoftLicense.dylib +0 -0
  24. dynamsoft_barcode_reader_bundle/libDynamsoftNeuralNetwork.dylib +0 -0
  25. dynamsoft_barcode_reader_bundle/libDynamsoftUtility.dylib +0 -0
  26. dynamsoft_barcode_reader_bundle/license.py +1 -1
  27. dynamsoft_barcode_reader_bundle/utility.py +1 -1
  28. {dynamsoft_barcode_reader_bundle-11.0.6000.dist-info → dynamsoft_barcode_reader_bundle-11.2.5000.dist-info}/METADATA +4 -10
  29. dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/RECORD +33 -0
  30. dynamsoft_barcode_reader_bundle-11.0.6000.dist-info/RECORD +0 -29
  31. {dynamsoft_barcode_reader_bundle-11.0.6000.dist-info → dynamsoft_barcode_reader_bundle-11.2.5000.dist-info}/LICENSE.txt +0 -0
  32. {dynamsoft_barcode_reader_bundle-11.0.6000.dist-info → dynamsoft_barcode_reader_bundle-11.2.5000.dist-info}/WHEEL +0 -0
  33. {dynamsoft_barcode_reader_bundle-11.0.6000.dist-info → dynamsoft_barcode_reader_bundle-11.2.5000.dist-info}/top_level.txt +0 -0
@@ -268,6 +268,9 @@
268
268
  },
269
269
  {
270
270
  "Mode": "LM_CONNECTED_BLOCKS"
271
+ },
272
+ {
273
+ "Mode": "LM_NEURAL_NETWORK"
271
274
  }
272
275
  ]
273
276
  },
@@ -297,6 +300,15 @@
297
300
  },
298
301
  {
299
302
  "Mode": "DM_THRESHOLD_BINARIZATION"
303
+ },
304
+ {
305
+ "Mode": "DM_DIRECT_BINARIZATION"
306
+ },
307
+ {
308
+ "Mode": "DM_NEURAL_NETWORK"
309
+ },
310
+ {
311
+ "Mode": "DM_DEEP_ANALYSIS"
300
312
  }
301
313
  ]
302
314
  }
@@ -500,8 +512,8 @@
500
512
  "BinarizationModes": [
501
513
  {
502
514
  "Mode": "BM_LOCAL_BLOCK",
503
- "BlockSizeX": 71,
504
- "BlockSizeY": 71,
515
+ "BlockSizeX": 0,
516
+ "BlockSizeY": 0,
505
517
  "EnableFillBinaryVacancy": 0
506
518
  }
507
519
  ]
@@ -511,8 +523,8 @@
511
523
  "BinarizationModes": [
512
524
  {
513
525
  "Mode": "BM_LOCAL_BLOCK",
514
- "BlockSizeX": 71,
515
- "BlockSizeY": 71,
526
+ "BlockSizeX": 0,
527
+ "BlockSizeY": 0,
516
528
  "EnableFillBinaryVacancy": 0
517
529
  }
518
530
  ]
@@ -5,4 +5,4 @@ from .dip import *
5
5
  from .license import *
6
6
  from .utility import *
7
7
 
8
- __version__ = "11.0.6000"
8
+ __version__ = "11.2.5000"
@@ -1,4 +1,4 @@
1
- __version__ = "4.0.40.3040"
1
+ __version__ = "4.0.40.6322"
2
2
 
3
3
  import sys
4
4
 
@@ -452,10 +452,18 @@ class Quadrilateral:
452
452
  get_area(self) -> int: Gets the area of the quadrilateral.
453
453
  get_bounding_rect(self) -> Rect: Gets the bounding rectangle of the quadrilateral.
454
454
  """
455
+
456
+ class _OwnerList(List):
457
+ def __init__(self,owner, list):
458
+ self._owner = owner
459
+ super().__init__(list)
460
+
455
461
  _thisown = property(
456
462
  lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag"
457
463
  )
458
464
 
465
+
466
+
459
467
  def __init__(self):
460
468
  """
461
469
  Initializes a new instance of the Quadrilateral class with default values.
@@ -472,13 +480,13 @@ class Quadrilateral:
472
480
  @property
473
481
  def points(self) -> List[Point]:
474
482
  if not hasattr(self, '_point_list') or self._point_list is None:
475
- self._point_list = _DynamsoftCore.CQuadrilateral_points_get(self)
483
+ self._point_list = Quadrilateral._OwnerList(self,_DynamsoftCore.CQuadrilateral_points_get(self))
476
484
  return self._point_list
477
485
 
478
486
  @points.setter
479
487
  def points(self, point_list):
480
488
  if not hasattr(self, '_point_list') or self._point_list is None:
481
- self._point_list = _DynamsoftCore.CQuadrilateral_points_get(self)
489
+ self._point_list = Quadrilateral._OwnerList(self,_DynamsoftCore.CQuadrilateral_points_get(self))
482
490
  _DynamsoftCore.CQuadrilateral_points_set(self, point_list)
483
491
  self._point_list = point_list
484
492
 
@@ -1,4 +1,4 @@
1
- __version__ = "3.0.60.3040"
1
+ __version__ = "3.2.50.6322"
2
2
 
3
3
  if __package__ or "." in __name__:
4
4
  from .core import *
@@ -848,7 +848,7 @@ class CaptureVisionRouter:
848
848
  include_default_values (bool): Specifies whether to include default values in the exported template. Default values is False.
849
849
 
850
850
  Returns:
851
- A tuple containing an error code, error message, and a string containing the exported template.
851
+ A tuple containing an error code, a string containing the exported template, and error message.
852
852
  """
853
853
  return _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_OutputSettings(
854
854
  self, template_name, include_default_values
@@ -1219,7 +1219,8 @@ class CaptureVisionRouter:
1219
1219
  """
1220
1220
  return _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_GetParameterTemplateName(self, index)
1221
1221
 
1222
- def append_model_buffer(self, model_name: str, model_buffer: bytes, max_model_instances: int) -> Tuple[int, str]:
1222
+ @staticmethod
1223
+ def append_model_buffer(model_name: str, model_buffer: bytes, max_model_instances: int) -> Tuple[int, str]:
1223
1224
  """
1224
1225
  Appends a model to the model buffer.
1225
1226
 
@@ -1233,9 +1234,66 @@ class CaptureVisionRouter:
1233
1234
  - error_code (int): The error code indicating the status of the operation.
1234
1235
  - error_message (str): A descriptive message explaining the error.
1235
1236
  """
1237
+ import warnings
1238
+ warnings.warn(
1239
+ "Function 'append_model_buffer' Will be removed in future versions. Please use `append_dl_model_buffer` function instead.",
1240
+ DeprecationWarning,
1241
+ stacklevel=2
1242
+ )
1236
1243
  return _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_AppendModelBuffer(
1237
- self, model_name, model_buffer, max_model_instances
1244
+ model_name, model_buffer, max_model_instances
1245
+ )
1246
+
1247
+ @staticmethod
1248
+ def append_dl_model_buffer(model_name: str, model_buffer: bytes, max_model_instances: int) -> Tuple[int, str]:
1249
+ """
1250
+ Appends a deep learning model to the memory buffer.
1251
+
1252
+ Args:
1253
+ model_name (str): The name of the model.
1254
+ model_buffer (bytes): The bytes of the model.
1255
+ max_model_instances (int): The max instances created for the model.
1256
+
1257
+ Returns:
1258
+ A tuple containing following elements:
1259
+ - error_code (int): The error code indicating the status of the operation.
1260
+ - error_message (str): A descriptive message explaining the error.
1261
+ """
1262
+ return _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_AppendDLModelBuffer(
1263
+ model_name, model_buffer, max_model_instances
1238
1264
  )
1265
+
1266
+ @staticmethod
1267
+ def clear_dl_model_buffers() -> None:
1268
+ """
1269
+ Clears all deep learning models from buffer to free up memory.
1270
+ """
1271
+ _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_ClearDLModelBuffers()
1272
+
1273
+ def switch_capturing_template(self, template_name: str) -> Tuple[int, str]:
1274
+ """
1275
+ Switch the capturing template during the image processing workflow.
1276
+
1277
+ Args:
1278
+ template_name (str): The name of the new capturing template to apply.
1279
+
1280
+ Returns:
1281
+ A tuple containing following elements:
1282
+ - error_code (int): The error code indicating the status of the operation.
1283
+ - error_message (str): A descriptive message explaining the error.
1284
+ """
1285
+ return _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_SwitchCapturingTemplate(self, template_name)
1286
+
1287
+ @staticmethod
1288
+ def set_global_intra_op_num_threads(intra_op_num_threads: int) -> None:
1289
+ """
1290
+ Sets the global number of threads used internally for model execution.
1291
+
1292
+ Args:
1293
+ intra_op_num_threads (int): Number of threads used internally for model execution. Valid range: [0, 256]. If the value is outside the range [0, 256], it will be treated as 0 (default).
1294
+ """
1295
+ _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_SetGlobalIntraOpNumThreads(intra_op_num_threads)
1296
+
1239
1297
  def get_intermediate_result_manager(self)->IntermediateResultManager:
1240
1298
  if self._intermediate_result_manager is None:
1241
1299
  self._intermediate_result_manager = _DynamsoftCaptureVisionRouter.CCaptureVisionRouter_GetIntermediateResultManager(self)
@@ -1,4 +1,4 @@
1
- __version__ = "11.0.60.3040"
1
+ __version__ = "11.2.50.6322"
2
2
 
3
3
  if __package__ or "." in __name__:
4
4
  from .core import *
@@ -86,6 +86,7 @@ class EnumLocalizationMode(IntEnum):
86
86
  LM_STATISTICS_POSTAL_CODE = _DynamsoftBarcodeReader.LM_STATISTICS_POSTAL_CODE
87
87
  LM_CENTRE = _DynamsoftBarcodeReader.LM_CENTRE
88
88
  LM_ONED_FAST_SCAN = _DynamsoftBarcodeReader.LM_ONED_FAST_SCAN
89
+ LM_NEURAL_NETWORK = _DynamsoftBarcodeReader.LM_NEURAL_NETWORK
89
90
  LM_REV = _DynamsoftBarcodeReader.LM_REV
90
91
  LM_END = _DynamsoftBarcodeReader.LM_END
91
92
  LM_SKIP = _DynamsoftBarcodeReader.LM_SKIP
@@ -1,4 +1,4 @@
1
- __version__ = "3.0.30.3040"
1
+ __version__ = "3.0.30.6322"
2
2
 
3
3
  if __package__ or "." in __name__:
4
4
  from . import _DynamsoftImageProcessing
@@ -1,4 +1,4 @@
1
- __version__ = "2.0.30.3040"
1
+ __version__ = "2.0.30.6322"
2
2
 
3
3
  if __package__ or "." in __name__:
4
4
  from . import _DynamsoftNeuralNetwork
@@ -1,4 +1,4 @@
1
- __version__ = "4.0.30.3040"
1
+ __version__ = "4.0.30.6322"
2
2
 
3
3
  if __package__ or "." in __name__:
4
4
  from . import _DynamsoftLicense
@@ -1,4 +1,4 @@
1
- __version__ = "2.0.40.3040"
1
+ __version__ = "2.0.40.6322"
2
2
 
3
3
  if __package__ or "." in __name__:
4
4
  from .cvr import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dynamsoft-barcode-reader-bundle
3
- Version: 11.0.6000
3
+ Version: 11.2.5000
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
@@ -19,8 +19,6 @@ Classifier: Operating System :: POSIX :: Linux
19
19
  Classifier: Programming Language :: Python
20
20
  Classifier: Programming Language :: Python :: 3
21
21
  Classifier: Programming Language :: Python :: 3 :: Only
22
- Classifier: Programming Language :: Python :: 3.8
23
- Classifier: Programming Language :: Python :: 3.9
24
22
  Classifier: Programming Language :: Python :: 3.10
25
23
  Classifier: Programming Language :: Python :: 3.11
26
24
  Classifier: Programming Language :: Python :: 3.12
@@ -37,7 +35,7 @@ Dynamsoft Barcode Reader SDK for Python
37
35
  |version| |python| |pypi|
38
36
 
39
37
  .. |version| image:: https://img.shields.io/pypi/v/dynamsoft_barcode_reader_bundle?color=orange
40
- .. |python| image:: https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue
38
+ .. |python| image:: https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue
41
39
  .. |pypi| image:: https://img.shields.io/pypi/dm/dynamsoft_barcode_reader_bundle
42
40
 
43
41
 
@@ -72,7 +70,7 @@ which is newly established to aggregate the features of functional products powe
72
70
  Version
73
71
  -------
74
72
 
75
- - 11.0.6000
73
+ - 11.2.5000
76
74
 
77
75
  Supported Platforms
78
76
  -------------------
@@ -81,7 +79,7 @@ Supported Platforms
81
79
 
82
80
  - Linux(x64, ARM64)
83
81
 
84
- - macOS (10.15+)
82
+ - macOS (12+)
85
83
 
86
84
  Supported Python Versions
87
85
  -------------------------
@@ -93,10 +91,6 @@ Supported Python Versions
93
91
 
94
92
  - Python3.10
95
93
 
96
- - Python3.9
97
-
98
- - Python3.8
99
-
100
94
  Installation
101
95
  ------------
102
96
 
@@ -0,0 +1,33 @@
1
+ dynamsoft_barcode_reader_bundle/_DynamsoftBarcodeReader.cpython-310-darwin.so,sha256=3eIbG-vo02CXb9zLiJzTajOTD_NG7Hxqt9K4nyXMaLU,617674
2
+ dynamsoft_barcode_reader_bundle/_DynamsoftCaptureVisionRouter.cpython-310-darwin.so,sha256=1wYTif7LuqbRLiLNEKGF37mr40snqsImrnudQtIkib0,732544
3
+ dynamsoft_barcode_reader_bundle/_DynamsoftCore.cpython-310-darwin.so,sha256=3mauv7fku0psadOF_p4ZqbGxNBf-tYaVJ84VyfSb2jM,788401
4
+ dynamsoft_barcode_reader_bundle/_DynamsoftImageProcessing.cpython-310-darwin.so,sha256=LIczvn28tLPkycjFMrwywuyo8ApIrF1IAhpW5tNhDlg,120316
5
+ dynamsoft_barcode_reader_bundle/_DynamsoftLicense.cpython-310-darwin.so,sha256=RLsxfI4e7KTKO6DC9Bp8AJ-3P0IUncx6LVtqSjgZw64,184404
6
+ dynamsoft_barcode_reader_bundle/_DynamsoftUtility.cpython-310-darwin.so,sha256=0PUw0ei5IXm8JK8ZqibcjA6CdiAv5Ob23rOAnXh0PFg,321620
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/LICENSE.txt,sha256=550pqHw_wTvF-jK6fIoa1D3Lo7EXYG-3xW2GUDyBTXA,53
30
+ dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/METADATA,sha256=m1gydBVOqWhhAAY441yQz1Urbz_M6L4W0TXpKv9mDzk,5724
31
+ dynamsoft_barcode_reader_bundle-11.2.5000.dist-info/WHEEL,sha256=yqMq8mXZXv_BGfMgDx5i07g2X9-dVu4QSCoPWqvzwlk,115
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,,
@@ -1,29 +0,0 @@
1
- dynamsoft_barcode_reader_bundle/_DynamsoftBarcodeReader.cpython-310-darwin.so,sha256=bjbzxkf91WPO6pcCEOB0c3LnyTnojOgkZBUIQAtKTRY,617674
2
- dynamsoft_barcode_reader_bundle/_DynamsoftCaptureVisionRouter.cpython-310-darwin.so,sha256=WnZy7uux9FywDRdix_YRgRVQ7V-Ir48LHafH2D57nB4,730912
3
- dynamsoft_barcode_reader_bundle/_DynamsoftCore.cpython-310-darwin.so,sha256=7E_BQUC0afMJo_rGt7oHDqxTW2oSK9LaDu0XEHWq_JQ,788401
4
- dynamsoft_barcode_reader_bundle/_DynamsoftImageProcessing.cpython-310-darwin.so,sha256=bVi9YzqXWKHi_dL2uPT9m34XTt__AlKm4EaBF02OWsY,120316
5
- dynamsoft_barcode_reader_bundle/_DynamsoftLicense.cpython-310-darwin.so,sha256=Ek9gmm6z-zOHEiQr81G5y-SDo4aZIgIvcuSstBOKnfg,184404
6
- dynamsoft_barcode_reader_bundle/_DynamsoftUtility.cpython-310-darwin.so,sha256=UkIOnX6JM6VXDHlKDaU8IAlT8U40mvqUMmKPrHtsK0A,321620
7
- dynamsoft_barcode_reader_bundle/__init__.py,sha256=0ipXSSxUTzBSqPupIKeRlppnMP0GPpmHOTPIPlAL9QU,150
8
- dynamsoft_barcode_reader_bundle/core.py,sha256=D6UGvnI5_HwFeXirH3AXOGUBTfRbj5OB1nZXNKc9Xf0,109375
9
- dynamsoft_barcode_reader_bundle/cvr.py,sha256=VHy4hmZ1QPsVWM1gCvRhQ4Ut40jY82Bq5iARLp3-adI,62727
10
- dynamsoft_barcode_reader_bundle/dbr.py,sha256=LV1Gv7ySd8jneYLkPMMBwyep2rJeIlbI3my9mmcfSJI,54883
11
- dynamsoft_barcode_reader_bundle/dip.py,sha256=H8gF56w3ld9EtZfZGJdN-uoqpBZCWsHjMdjS1Tc5Y54,741
12
- dynamsoft_barcode_reader_bundle/dnn.py,sha256=y4GFpadSrwzHmRedtJlZ4BjVcpf8jMnTq7m2xx2RhwM,723
13
- dynamsoft_barcode_reader_bundle/libDynamicPdf.dylib,sha256=Q_NAoEuB-Qk-YswXdSCdlGxIL_IFvuwYZFFeQa9GvHQ,14274384
14
- dynamsoft_barcode_reader_bundle/libDynamsoftBarcodeReader.dylib,sha256=xodmPtSsKiT7dv0QPe67I93ArMcfD2S5DuQkZJSyO7s,17521740
15
- dynamsoft_barcode_reader_bundle/libDynamsoftCaptureVisionRouter.dylib,sha256=jb5iYRujuCRT-JatgSFuTs0iaKJ5uKCDoeqiw9P4dBE,1219088
16
- dynamsoft_barcode_reader_bundle/libDynamsoftCore.dylib,sha256=8I8AE_jb_gUzKQ3bSiVn-roJgKcpGC7GoV0DaWOtQVU,1333568
17
- dynamsoft_barcode_reader_bundle/libDynamsoftImageProcessing.dylib,sha256=qmJrAFOqsHTpVA8r1NSe-dWKvfS0G3rSE-YCBXHJ-oo,17927952
18
- dynamsoft_barcode_reader_bundle/libDynamsoftLicense.dylib,sha256=uy_mHPKAIZktJKWHjA7dbRMZc3FJkBvw4s1kMvvNgV4,6688976
19
- dynamsoft_barcode_reader_bundle/libDynamsoftNeuralNetwork.dylib,sha256=GPBhRhc88DHorn8J3TtPdyeEEsDfCUogT4VZ4hUAmJQ,3999056
20
- dynamsoft_barcode_reader_bundle/libDynamsoftUtility.dylib,sha256=gjq3AfoJEsgTyI-6bTVd_AhPUk4aTJzhyyRz90e-8I8,456208
21
- dynamsoft_barcode_reader_bundle/license.py,sha256=LpbUWnWO_r1nES0b20KsDFQfGTaVynqiWkPjbYwUtQI,5277
22
- dynamsoft_barcode_reader_bundle/utility.py,sha256=zxn7MhJNEBBEck1ZHJnMOiqZ4axHorK5mNz3O6qroAI,36357
23
- dynamsoft_barcode_reader_bundle/Models/OneDDeblur.data,sha256=UjfcrCu1e_HJYJOVVgaze74O8Ez-RqZVzFt5KZq0JcY,1665775
24
- dynamsoft_barcode_reader_bundle/Templates/DBR-PresetTemplates.json,sha256=3WRRTMjp1D8GhjyjM8ivMEeBAx_zEmdHRIyMSfIcr9M,17850
25
- dynamsoft_barcode_reader_bundle-11.0.6000.dist-info/LICENSE.txt,sha256=550pqHw_wTvF-jK6fIoa1D3Lo7EXYG-3xW2GUDyBTXA,53
26
- dynamsoft_barcode_reader_bundle-11.0.6000.dist-info/METADATA,sha256=g2pK4rGvb_YTR2nwXIhPtF8_WqxDboSvlj28FOLqsm8,5879
27
- dynamsoft_barcode_reader_bundle-11.0.6000.dist-info/WHEEL,sha256=yqMq8mXZXv_BGfMgDx5i07g2X9-dVu4QSCoPWqvzwlk,115
28
- dynamsoft_barcode_reader_bundle-11.0.6000.dist-info/top_level.txt,sha256=ANZI7fujUpH3xOwwBwVGUmxhXkXpJaNyLC3Kj3RgZ34,163
29
- dynamsoft_barcode_reader_bundle-11.0.6000.dist-info/RECORD,,