From c483d1d591bf373e60236444b23c1312d38ab049 Mon Sep 17 00:00:00 2001 From: yushulx Date: Mon, 21 Oct 2024 13:08:32 +0800 Subject: [PATCH] Create README.md --- examples/official/10.x/README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 examples/official/10.x/README.md diff --git a/examples/official/10.x/README.md b/examples/official/10.x/README.md new file mode 100644 index 0000000..1f8653f --- /dev/null +++ b/examples/official/10.x/README.md @@ -0,0 +1,27 @@ +# Dynamsoft Capture Vision SDK for Barcode Detection +This repository contains example code for using the Dynamsoft Capture Vision SDK to detect barcodes in images. + + +## Prerequisites +- [Dynamsoft Capture Vision Trial License](https://www.dynamsoft.com/customer/license/trialLicense/?product=dcv&package=cross-platform) + + ```python + errorCode, errorMsg = LicenseManager.init_license( + "LICENSE-KEY") + ``` + +- SDK Installation + + ```bash + pip install -r requirements.txt + ``` + +## Supported Platforms +- Windows +- Linux +- macOS + + +## Examples +- [camera.py](./camera.py): Detect barcodes from a camera video stream. +- [file.py](./file.py): Detect barcodes from an image file and display the results in a window. \ No newline at end of file