Skip to content

Commit b3f4074

Browse files
test
1 parent 4004a98 commit b3f4074

File tree

58 files changed

+30
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+30
-340
lines changed

Legal.txt

Lines changed: 1 addition & 320 deletions
Large diffs are not rendered by default.

dynamsoft_barcode_reader_bundle/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.40.4484"
1+
__version__ = "4.0.40.4566"
22

33
import sys
44

dynamsoft_barcode_reader_bundle/cvr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.2.10.4484"
1+
__version__ = "3.2.10.4566"
22

33
if __package__ or "." in __name__:
44
from .core import *

dynamsoft_barcode_reader_bundle/dbr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "11.2.10.4484"
1+
__version__ = "11.2.10.4566"
22

33
if __package__ or "." in __name__:
44
from .core import *

dynamsoft_barcode_reader_bundle/dip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.30.4484"
1+
__version__ = "3.0.30.4566"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftImageProcessing

dynamsoft_barcode_reader_bundle/dnn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0.30.4484"
1+
__version__ = "2.0.30.4566"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftNeuralNetwork

dynamsoft_barcode_reader_bundle/license.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.30.4484"
1+
__version__ = "4.0.30.4566"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftLicense

dynamsoft_barcode_reader_bundle/utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0.40.4484"
1+
__version__ = "2.0.40.4566"
22

33
if __package__ or "." in __name__:
44
from .cvr import *

include/DynamsoftBarcodeReader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ typedef void* HANDLE;
1818

1919
#include "DynamsoftCore.h"
2020

21-
#define DBR_VERSION "11.2.10.5953"
21+
#define DBR_VERSION "11.2.10.5980"
2222

2323
/**Enumeration section*/
2424

include/DynamsoftCaptureVisionRouter.h

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "DynamsoftCodeParser.h"
2828
//#endif
2929

30-
#define DCV_VERSION "3.2.10.5953"
30+
#define DCV_VERSION "3.2.10.5980"
3131

3232
/**Enumeration section*/
3333

@@ -1363,7 +1363,7 @@ namespace dynamsoft
13631363
int GetParameterTemplateName(const int index, char nameBuffer[], int nameBufferLen);
13641364

13651365
/**
1366-
* Appends a model to the model buffer.
1366+
* Appends a deep learning model to the memory buffer.
13671367
*
13681368
* @param [in] modelName The name of the model.
13691369
* @param [in] modelBytes The bytes of the model.
@@ -1372,6 +1372,18 @@ namespace dynamsoft
13721372
*
13731373
* @return Returns 0 if succeeds, nonzero otherwise.
13741374
*/
1375+
static int AppendDLModelBuffer(const char* modelName, const unsigned char* modelBytes, int modelBytesLength, int maxModelInstances);
1376+
1377+
/**
1378+
* Clears all deep learning models from buffer to free up memory.
1379+
*
1380+
*/
1381+
static void ClearDLModelBuffers();
1382+
1383+
/**
1384+
* Deprecated. Will be removed in future versions. Use AppendDLModelBuffer instead.
1385+
*
1386+
*/
13751387
static int AppendModelBuffer(const char* modelName, const unsigned char* modelBytes, int modelBytesLength, int maxModelInstances);
13761388

13771389
/**

0 commit comments

Comments
 (0)