-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathdemo.py
More file actions
34 lines (27 loc) · 1011 Bytes
/
demo.py
File metadata and controls
34 lines (27 loc) · 1011 Bytes
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
34
# ---------------------------------------------------------------------
# Copyright (c) 2025 Qualcomm Technologies, Inc. and/or its subsidiaries.
# SPDX-License-Identifier: BSD-3-Clause
# ---------------------------------------------------------------------
from __future__ import annotations
from qai_hub_models.models._shared.yolo.demo import yolo_segmentation_demo
from qai_hub_models.models.yolov11_seg.model import (
MODEL_ASSET_VERSION,
MODEL_ID,
YoloV11Segmentor,
)
from qai_hub_models.utils.asset_loaders import CachedWebModelAsset
IMAGE_ADDRESS = CachedWebModelAsset.from_asset_store(
MODEL_ID, MODEL_ASSET_VERSION, "test_images/bus.jpg"
)
OUTPUT_IMAGE_ADDRESS = CachedWebModelAsset.from_asset_store(
MODEL_ID, MODEL_ASSET_VERSION, "test_images/out_bus_with_mask.png"
)
def main(is_test: bool = False) -> None:
yolo_segmentation_demo(
YoloV11Segmentor,
MODEL_ID,
IMAGE_ADDRESS,
is_test=is_test,
)
if __name__ == "__main__":
main()