Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,10 @@ import cv2
|
|
3 |
import matplotlib.pyplot as plt
|
4 |
from inference import Stream
|
5 |
import supervision as sv
|
|
|
|
|
|
|
|
|
6 |
|
7 |
annotator = sv.BoxAnnotator()
|
8 |
|
|
|
3 |
import matplotlib.pyplot as plt
|
4 |
from inference import Stream
|
5 |
import supervision as sv
|
6 |
+
import os
|
7 |
+
|
8 |
+
# Set the ROBOFLOW_API_KEY environment variable
|
9 |
+
os.environ['ROBOFLOW_API_KEY'] = 'IULZtAWvW5mYVYQ1rqxG'
|
10 |
|
11 |
annotator = sv.BoxAnnotator()
|
12 |
|