-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker image for DetectAndDecodeBarcode (#20101)
* docker image for DetectAndDecodeBarcode * update pipfile lock * Change barcode library to zxing-cpp --------- Co-authored-by: ostolero <[email protected]> Co-authored-by: ostolero <[email protected]>
- Loading branch information
1 parent
c70daad
commit 028b17d
Showing
3 changed files
with
26 additions
and
2 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ name = "pypi" | |
[packages] | ||
opencv-python = "*" | ||
Pillow = "*" | ||
zxing-cpp = "*" | ||
numpy = "*" | ||
|
||
[dev-packages] | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import cv2 | ||
import numpy | ||
import PIL | ||
import zxingcpp | ||
|
||
|
||
print("All is good. Packages imported successfully") |