Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend base config for stream example #7

Merged
merged 1 commit into from
Jan 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.