mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-26 11:43:25 +00:00
* Install pyzbar to image I suggest installing pyzbar to RPi image for making barcodes scanning easier during different competitions. * pyzbar: Add libzbar0 install * pyzbar: Add simple tests * pyzbar: Update docs
9 lines
143 B
Python
Executable File
9 lines
143 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Make sure our Python 3 software is installed
|
|
|
|
import cv2
|
|
from pyzbar import pyzbar
|
|
|
|
print(cv2.getBuildInformation())
|