File size: 2,116 Bytes
9100260
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import unittest
import os
import cv2
import numpy as np
from pic_to_header.core import process_header_image

class TestCore(unittest.TestCase):
    def setUp(self):
        self.input_image_path = 'test_input.png'
        self.mask_image_path = 'test_mask.png'
        self.output_image_path = 'test_output.png'

        # テスト用の入力画像を作成
        input_image = np.ones((100, 100, 3), dtype=np.uint8) * 255
        cv2.imwrite(self.input_image_path, input_image)

        # テスト用のマスク画像を作成
        mask_image = np.zeros((100, 100), dtype=np.uint8)
        mask_image[25:75, 25:75] = 255
        cv2.imwrite(self.mask_image_path, mask_image)

    def tearDown(self):
        # テスト用のファイルを削除
        for file in [self.input_image_path, self.mask_image_path, self.output_image_path]:
            if os.path.exists(file):
                os.remove(file)

    def test_process_header_image(self):
        # process_header_image 関数をテスト
        result = process_header_image(self.input_image_path, self.mask_image_path, self.output_image_path)

        # 出力ファイルが作成されたことを確認
        self.assertTrue(os.path.exists(self.output_image_path))

        # 出力画像を読み込み
        output_image = cv2.imread(self.output_image_path, cv2.IMREAD_UNCHANGED)

        # 出力画像が正しいサイズであることを確認
        self.assertEqual(output_image.shape[:2], (100, 100))

        # アルファチャンネルが正しく適用されていることを確認
        self.assertEqual(output_image.shape[2], 4)  # BGRAチャンネル
        
        # マスクが正しく適用されていることを確認
        np.testing.assert_array_equal(output_image[25:75, 25:75, 3], 255)
        np.testing.assert_array_equal(output_image[:25, :, 3], 0)
        np.testing.assert_array_equal(output_image[75:, :, 3], 0)
        np.testing.assert_array_equal(output_image[:, :25, 3], 0)
        np.testing.assert_array_equal(output_image[:, 75:, 3], 0)

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