-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |