|
13 | 13 | - [Supported Python Version](#supported-python-version) |
14 | 14 | - [Supported Platforms](#supported-platforms) |
15 | 15 | - [Installation](#installation) |
| 16 | +- [License](#license) |
16 | 17 | - [Supported Symbologies](#supported-symbologies) |
17 | 18 | - [Release Notes](#release-notes) |
18 | 19 | - [Interfaces](#interfaces) |
|
26 | 27 | - [Contact Us](#contact-us) |
27 | 28 |
|
28 | 29 | ### Version |
29 | | -- **7.5** |
| 30 | +- **7.6** |
30 | 31 |
|
31 | 32 | ### Supported Platforms |
32 | 33 | - **Windows x64** |
33 | 34 |
|
34 | | -- **Linux** |
| 35 | +- **Linux(x64, ARM32, ARM64)** |
35 | 36 |
|
36 | | -- **Mac OS** |
37 | | - |
38 | | -- **Raspberry Pi OS** |
| 37 | +- **macOS** |
39 | 38 |
|
40 | 39 | ### Supported Python Versions |
41 | 40 |
|
|
49 | 48 |
|
50 | 49 | >**pip install dbr** |
51 | 50 |
|
| 51 | +### License |
| 52 | + |
| 53 | +Apply for a trial license: https://www.dynamsoft.com/CustomerPortal/Portal/Triallicense.aspx |
| 54 | + |
52 | 55 | ### Supported Symbologies |
53 | 56 | *We support all major barcodes symbologies across a variety of industries such as government, finance, retail, warehouse inventory, and healthcare.* |
54 | 57 |
|
@@ -756,6 +759,7 @@ Describes the text result order mode. |
756 | 759 | - roi_id : The ID of the ROI (Region Of Interest) generated by the SDK. -1 means the original image. |
757 | 760 | - scale_down_ratio : The scale down ratio |
758 | 761 | - frame_id : The ID of the operated frame |
| 762 | + - rpm_colour_argument_index : The index of ForeAndBackgroundColour argument used for RegionPredetectionMode |
759 | 763 |
|
760 | 764 |
|
761 | 765 | #### Exception Class Interface |
@@ -877,6 +881,17 @@ Describes the text result order mode. |
877 | 881 | - @return text_results <list[class TextResult]> : All text results. |
878 | 882 | - @exception BarcodeReaderError |
879 | 883 |
|
| 884 | + - decode_buffer_manually(self, buffer, width, height, stride, image_pixel_format, template_name="") |
| 885 | + - @description Decodes barcodes from the memory buffer containing image pixels in defined format. |
| 886 | + - @param buffer <bytes or bytearray> : The array of bytes which contain the image data. |
| 887 | + - @param width <int> : The width of the image in pixels. |
| 888 | + - @param height <int> : The height of the image in pixels. |
| 889 | + - @param stride <int> : The stride (or scan width) of the image. |
| 890 | + - @param image_pixel_format <EnumImagePixelFormat> : The image pixel format used in the image byte array. Default value = EnumImagePixelFormat.IPF_RGB_888. |
| 891 | + - @param template_name(optional) <str> : The template name. |
| 892 | + - @return text_results <list[class TextResult]> : All text results. |
| 893 | + - @exception BarcodeReaderError : If error happens, this function will throw a BarcodeReaderError exception that can report the detailed error message. |
| 894 | + |
880 | 895 | - decode_file_stream(file_stream, template_name="") |
881 | 896 | - @description Decodes barcodes from an image file in memory. |
882 | 897 | - @param file_stream <bytearray> : The image file bytes in memory. |
|
0 commit comments