-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathdemo.py
33 lines (28 loc) · 1.04 KB
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# ---------------------------------------------------------------------
# Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause
# ---------------------------------------------------------------------
from qai_hub_models.models._shared.body_detection.app import BodyDetectionApp
from qai_hub_models.models._shared.body_detection.demo import BodyDetectionDemo
from qai_hub_models.models.gear_guard_net.model import MODEL_ASSET_VERSION
from qai_hub_models.models.gear_guard_net_quantized.model import (
MODEL_ID,
GearGuardNetQuantizable,
)
from qai_hub_models.utils.asset_loaders import CachedWebModelAsset
INPUT_IMAGE_ADDRESS = CachedWebModelAsset.from_asset_store(
"gear_guard_net", MODEL_ASSET_VERSION, "test_image.jpg"
)
def main(is_test: bool = False):
BodyDetectionDemo(
is_test,
GearGuardNetQuantizable,
MODEL_ID,
BodyDetectionApp,
INPUT_IMAGE_ADDRESS,
320,
192,
0.9,
)
if __name__ == "__main__":
main()