Skip to content

Commit

Permalink
add a benchmark script
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeblackshear committed Jul 31, 2019
1 parent 2d22a04 commit 7028b05
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,6 @@ RUN (apt-get autoremove -y; \
WORKDIR /opt/frigate/
ADD frigate frigate/
COPY detect_objects.py .
COPY benchmark.py .

CMD ["python3", "-u", "detect_objects.py"]
20 changes: 20 additions & 0 deletions benchmark.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import statistics
import numpy as np
from edgetpu.detection.engine import DetectionEngine

# Path to frozen detection graph. This is the actual model that is used for the object detection.
PATH_TO_CKPT = '/frozen_inference_graph.pb'

# Load the edgetpu engine and labels
engine = DetectionEngine(PATH_TO_CKPT)

frame = np.zeros((300,300,3), np.uint8)
flattened_frame = np.expand_dims(frame, axis=0).flatten()

detection_times = []

for x in range(0, 1000):
objects = engine.DetectWithInputTensor(flattened_frame, threshold=0.1, top_k=3)
detection_times.append(engine.get_inference_time())

print("Average inference time: " + str(statistics.mean(detection_times)))

0 comments on commit 7028b05

Please sign in to comment.