300x250
def horizontalFlip(image): return cv2.flip(image, 1) def verticalFlip(image): return np.flipud(image) |
Horizontal/Vertical Flip
300x250
'Image Processing' 카테고리의 다른 글
skimage에서 try_all_threshold사용 [threshold 모음] (0) | 2021.04.20 |
---|---|
OPENCV PYTHON RGB 값에서 HSV 값으로 변환 (0) | 2021.02.02 |
Image Sharpening / Unsharp Image (0) | 2020.10.14 |
Image Brightness and Contrast 변경 (0) | 2020.10.14 |
image gamma 값 조정 (gamma correction) (0) | 2020.10.14 |