Skip to content

Commit

Permalink
Merge pull request #7 from edalquist/fix_example_config
Browse files Browse the repository at this point in the history
Extend base config for stream example
  • Loading branch information
angadsingh committed Jan 25, 2021
2 parents 5269412 + 5c9a394 commit 6c1295c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion configs/examples/config_tflite_ssd_stream.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from configs.config_base import ConfigBase
from configs.constants import InputMode, DetectorType


class Config:
class Config(ConfigBase):
def __init__(self):
super().__init__()

# whether to show fps in the output video feed
self.show_fps = True
# the fps to limit the output video feed to.
Expand Down
Empty file modified stream.py
100644 → 100755
Empty file.

0 comments on commit 6c1295c

Please sign in to comment.