Upload folder using huggingface_hub
Browse files
demo.py
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import os, cv2, time, math
|
| 2 |
print("=> Loading libraries...")
|
| 3 |
start = time.time()
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
while True:
|
| 3 |
+
try:
|
| 4 |
+
import cv2
|
| 5 |
+
except ImportError:
|
| 6 |
+
print("Package cv2 not found. Attepting installation.")
|
| 7 |
+
os.system("pip install -U opencv-python &> /dev/null")
|
| 8 |
+
continue
|
| 9 |
+
break
|
| 10 |
+
|
| 11 |
import os, cv2, time, math
|
| 12 |
print("=> Loading libraries...")
|
| 13 |
start = time.time()
|