Notice
Recent Posts
Link
- Today
- Total
hye-log
[Python]TypeError: image must be numpy array type(Resnet) 본문
Development/Python
[Python]TypeError: image must be numpy array type(Resnet)
iihye_ 2022. 10. 27. 12:32⚠️ 에러 상황
✅ 해결 방법
image를 불러올 때 np.array로 불러오기
np.array(Image.open(image_path))
resnet 모델을 사용하여 transform을 적용한 경우 아래와 같이 reutrn
if self.transform:
image = self.transform(image=image)
return image['image']
728x90
'Development > Python' 카테고리의 다른 글
[Python]Poetry 설치 방법(Window) (0) | 2023.01.15 |
---|---|
[Python]ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version 'GLIBCXX_3.4.26' not found (0) | 2022.12.26 |
[Python]requirements.txt로 패키지 관리하기 (0) | 2022.11.09 |
[Python]ImportError: cannot import name 'Concatenate' from 'typing_extensions' (0) | 2022.10.26 |
Comments