2023-02-08 03:26:03 +00:00
|
|
|
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
from modelscope.pipelines import pipeline
|
|
|
|
|
from modelscope.utils.constant import Tasks
|
|
|
|
|
from modelscope.utils.test_utils import test_level
|
|
|
|
|
|
|
|
|
|
|
2023-05-22 10:53:18 +08:00
|
|
|
class VideoPanopticSegmentationTest(unittest.TestCase):
|
2023-02-08 03:26:03 +00:00
|
|
|
|
|
|
|
|
def setUp(self) -> None:
|
|
|
|
|
self.task = Tasks.video_panoptic_segmentation
|
|
|
|
|
self.model_id = 'damo/cv_swinb_video-panoptic-segmentation_vipseg'
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
|
|
|
|
|
def test_run_modelhub(self):
|
|
|
|
|
video_path = 'data/test/videos/kitti-step_testing_image_02_0000.mp4'
|
|
|
|
|
seg_pipeline = pipeline(
|
|
|
|
|
Tasks.video_panoptic_segmentation,
|
|
|
|
|
model=self.model_id,
|
|
|
|
|
max_video_frames=20)
|
|
|
|
|
result = seg_pipeline(video_path)
|
|
|
|
|
|
|
|
|
|
print(f'video summarization output: \n{result}.')
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(test_level() >= 1, 'skip test in current test level')
|
|
|
|
|
def test_run_modelhub_default_model(self):
|
|
|
|
|
video_path = 'data/test/videos/kitti-step_testing_image_02_0000.mp4'
|
|
|
|
|
seg_pipeline = pipeline(Tasks.video_summarization, max_video_frames=20)
|
|
|
|
|
result = seg_pipeline(video_path)
|
|
|
|
|
|
|
|
|
|
print(f'video summarization output:\n {result}.')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
unittest.main()
|