728x90
반응형
Image.fromarray
new_image = Image.fromarray(before_image.astype(np.uint8))
+) 이 때 numpy dtype이 uint8형태인지 꼭 확인해야 함. 안그러면 아래와 같은 에러 발생
아닐 경우에는 상단처럼 astype으로 형변환 진행 후 PIL Image로 변환
TypeError: Cannot handle this data type: (1, 1, 4), <f4
728x90
반응형
'머신러닝 > Computer Vision' 카테고리의 다른 글
PIL Image rotate, 이미지 회전 시 꼭지점 좌표 계산 / How to calculate the vertices coordinate(or polygon points) after image rotation (0) | 2022.01.25 |
---|---|
[PIL] 이미지 축소, 확대(Image resize) (0) | 2022.01.24 |
[PIL] 함수 모음 - 지속적으로 작성 진행 중 (0) | 2022.01.21 |
[PIL] Crop / Clip image by Polygon points. / PIL로 이미지 자르기 (0) | 2021.12.21 |
[OpenCV] Histogram, Normalize (0) | 2021.11.09 |