2023-02-09 13:08:50 +00:00
|
|
|
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
|
|
|
import os.path as osp
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
import cv2
|
|
|
|
|
|
|
|
|
|
from modelscope.outputs import OutputKeys
|
|
|
|
|
from modelscope.pipelines import pipeline
|
|
|
|
|
from modelscope.pipelines.base 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 ImageColorEnhanceTest(unittest.TestCase):
|
2023-02-09 13:08:50 +00:00
|
|
|
|
|
|
|
|
def setUp(self) -> None:
|
|
|
|
|
self.model_id = 'damo/cv_rrdb_image-debanding'
|
|
|
|
|
self.task = Tasks.image_debanding
|
|
|
|
|
|
|
|
|
|
def pipeline_inference(self, pipeline: Pipeline, input_location: str):
|
|
|
|
|
result = pipeline(input_location)
|
|
|
|
|
if result is not None:
|
|
|
|
|
cv2.imwrite('result.png', result[OutputKeys.OUTPUT_IMG])
|
|
|
|
|
print(f'Output written to {osp.abspath("result.png")}')
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
|
|
|
|
|
def test_run_modelhub(self):
|
|
|
|
|
img_debanding = pipeline(Tasks.image_debanding, model=self.model_id)
|
|
|
|
|
self.pipeline_inference(img_debanding,
|
|
|
|
|
'data/test/images/image_debanding.png')
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
|
|
|
|
|
def test_run_modelhub_default_model(self):
|
|
|
|
|
img_debanding = pipeline(Tasks.image_debanding)
|
|
|
|
|
self.pipeline_inference(img_debanding,
|
|
|
|
|
'data/test/images/image_debanding.png')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
unittest.main()
|