반응형

1. Error 발생

cv2.imshow('test', img)

cv2.imwrite(path', img)

-> imshow 후 이미지를 저장하면 에러남

 

2. 해결방법

cv2.imwrite(path', img)

cv2.imshow('test', img)

-> 순서를 바꾸면 해결됨

반응형

+ Recent posts