| 4 | from albumentations import HorizontalFlip |
| 5 | |
| 6 | class TestAlbumentations(unittest.TestCase): |
| 7 | def test_rotate(self): |
| 8 | image = cv2.imread('/input/tests/data/dot.png') |
| 9 | aug = HorizontalFlip(p=1) |
| 10 | image_rotated = aug(image=image)['image'] |
nothing calls this directly
no outgoing calls
no test coverage detected