활연개랑

[Python] ValueError: cannot resize this array: it does not own its data 본문

Python

[Python] ValueError: cannot resize this array: it does not own its data

승해tmdhey 2022. 4. 8. 10:03
반응형

아무도 모르시겠지만 되게 오랜만이죠 ㅎㅎ

제가 취업을했어요 축하해주세요.

그래서 앞으로 글을 많이 올리진 못할 것 같지만 종종 올리도록 하겠습니다.

 

 

ValueError: cannot resize this array: it does not own its data

이미지 resize를 할 때 이런 오류가 난다면 아마도 img.resize(size,size) << 이 코드를 사용하셨을 가능성이 높은데요~

이미지가 보통 numpy 배열로 되어있을 것이기 때문에, np.resize(img,(size,size)) 이렇게 했을 때 저런 오류가 뜨지 않을거예요~ 

 

감사합니다.