반응형
python opencv
imread to bytes
import cv2
# 이미지 파일을 읽어들입니다.
image = cv2.imread('image.jpg')
# 이미지를 바이트로 변환합니다.
succ, enc_image = cv2.imencode('.jpg', image)
image_bytes = enc_image.tobytes()
# 변환된 이미지 바이트를 출력합니다.
print(image_bytes)
728x90
반응형
'Python' 카테고리의 다른 글
iframe 에 Jupyter notebook 넣기 (0) | 2023.03.27 |
---|---|
[Python] Anaconda 에서 Default Python Version 변경하기 (0) | 2023.03.22 |
[Python] Opencv 로 이미지 Rectangle, Circle, Text (2) | 2023.01.25 |
[Python] Logging 사용하기. FileRotate, TimeRotate (0) | 2023.01.24 |
[Python] 날짜 텍스트를 datetime 으로 변환하기 (0) | 2023.01.24 |
댓글