test.py 4.6 KB
Newer Older
jm_12138's avatar
jm_12138 已提交
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
import os
import shutil
import unittest

import cv2
import requests
import numpy as np
import paddlehub as hub


os.environ['CUDA_VISIBLE_DEVICES'] = '0'


class TestHubModule(unittest.TestCase):
    @classmethod
    def setUpClass(cls) -> None:
        img_url = 'https://unsplash.com/photos/pg_WCHWSdT8/download?ixid=MnwxMjA3fDB8MXxhbGx8fHx8fHx8fHwxNjYyNDM2ODI4&force=true&w=640'
        if not os.path.exists('tests'):
            os.makedirs('tests')
        response = requests.get(img_url)
        assert response.status_code == 200, 'Network Error.'
        with open('tests/test.jpg', 'wb') as f:
            f.write(response.content)
        fourcc = cv2.VideoWriter_fourcc('M', 'J', 'P', 'G')
        img = cv2.imread('tests/test.jpg')
        video = cv2.VideoWriter('tests/test.avi', fourcc,
                                20.0, tuple(img.shape[:2]))
        for i in range(40):
            video.write(img)
        video.release()
        cls.module = hub.Module(name="humanseg_lite")

    @classmethod
    def tearDownClass(cls) -> None:
        shutil.rmtree('tests')
        shutil.rmtree('inference')
        shutil.rmtree('humanseg_lite_output')
        shutil.rmtree('humanseg_lite_video_result')

    def test_segment1(self):
        results = self.module.segment(
            paths=['tests/test.jpg'],
            use_gpu=False,
            visualization=False
        )
        self.assertIsInstance(results[0]['data'], np.ndarray)

    def test_segment2(self):
        results = self.module.segment(
            images=[cv2.imread('tests/test.jpg')],
            use_gpu=False,
            visualization=False
        )
        self.assertIsInstance(results[0]['data'], np.ndarray)

    def test_segment3(self):
        results = self.module.segment(
            images=[cv2.imread('tests/test.jpg')],
            use_gpu=False,
            visualization=True
        )
        self.assertIsInstance(results[0]['data'], np.ndarray)

    def test_segment4(self):
        results = self.module.segment(
            images=[cv2.imread('tests/test.jpg')],
            use_gpu=True,
            visualization=False
        )
        self.assertIsInstance(results[0]['data'], np.ndarray)

    def test_segment5(self):
        self.assertRaises(
            AssertionError,
            self.module.segment,
            paths=['no.jpg']
        )

    def test_segment6(self):
        self.assertRaises(
            AttributeError,
            self.module.segment,
            images=['test.jpg']
        )

    def test_video_stream_segment1(self):
        img_matting, cur_gray, optflow_map = self.module.video_stream_segment(
            frame_org=cv2.imread('tests/test.jpg'),
            frame_id=1,
            prev_gray=None,
            prev_cfd=None,
            use_gpu=False
        )
        self.assertIsInstance(img_matting, np.ndarray)
        self.assertIsInstance(cur_gray, np.ndarray)
        self.assertIsInstance(optflow_map, np.ndarray)
        img_matting, cur_gray, optflow_map = self.module.video_stream_segment(
            frame_org=cv2.imread('tests/test.jpg'),
            frame_id=2,
            prev_gray=cur_gray,
            prev_cfd=optflow_map,
            use_gpu=False
        )
        self.assertIsInstance(img_matting, np.ndarray)
        self.assertIsInstance(cur_gray, np.ndarray)
        self.assertIsInstance(optflow_map, np.ndarray)

    def test_video_stream_segment2(self):
        img_matting, cur_gray, optflow_map = self.module.video_stream_segment(
            frame_org=cv2.imread('tests/test.jpg'),
            frame_id=1,
            prev_gray=None,
            prev_cfd=None,
            use_gpu=True
        )
        self.assertIsInstance(img_matting, np.ndarray)
        self.assertIsInstance(cur_gray, np.ndarray)
        self.assertIsInstance(optflow_map, np.ndarray)
        img_matting, cur_gray, optflow_map = self.module.video_stream_segment(
            frame_org=cv2.imread('tests/test.jpg'),
            frame_id=2,
            prev_gray=cur_gray,
            prev_cfd=optflow_map,
            use_gpu=True
        )
        self.assertIsInstance(img_matting, np.ndarray)
        self.assertIsInstance(cur_gray, np.ndarray)
        self.assertIsInstance(optflow_map, np.ndarray)

    def test_video_segment1(self):
        self.module.video_segment(
            video_path="tests/test.avi",
            use_gpu=False,
            save_dir='humanseg_lite_video_result'
        )

    def test_save_inference_model(self):
        self.module.save_inference_model('./inference/model')

        self.assertTrue(os.path.exists('./inference/model.pdmodel'))
        self.assertTrue(os.path.exists('./inference/model.pdiparams'))


if __name__ == "__main__":
    unittest.main()