-
[Python] 이미지 사이즈 변경Machine Learning 2021. 4. 11. 03:31728x90
from PIL import Image img = Image.open('data/src/sample.png') img_resize = img.resize((416, 416)) # 원하는 사이즈 입력 img_resize.save('data/dst/sample_resize.jpg')
728x90'Machine Learning' 카테고리의 다른 글
Linear Regression (0) 2022.07.11 You Only Look Once: Unified, Real-Time Object Detection (0) 2022.07.01 window에서 darknet 디버깅/빌드 하는 방법 (0) 2021.04.11 openCV를 이용한 motion detection 후 이미지 캡쳐 코드 (0) 2021.02.15 Kaggle 캐글 : 타이타닉으로 입문하기(2) - 여러가지 모델 & 제출 (0) 2020.02.17