Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- 백준
- 알고리즘
- nfs mount
- Linux
- Spring
- 정처기
- 딥러닝
- dkms
- 리눅스
- C++
- yolov7
- 딥스트림
- Python
- 주피터 노트북
- 스프링
- 도커 컨테이너
- 비디오미리보기
- tao_toolkit
- docker
- IOU
- deepstream
- C
- 네트워크
- 파이썬
- pyMySQL
- mAP@.5
- SQLD
- nouveau
- 타오툴킷
- 도커
Archives
- Today
- Total
한 번만 더 해보자
[Python] cv2.error: OpenCV(4.7.0) error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support. 본문
언어/Python
[Python] cv2.error: OpenCV(4.7.0) error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
정 하임 2023. 2. 28. 19:43에러코드
cv2.error: OpenCV(4.7.0) D:\a\opencv-python\opencv-python\opencv\modules\highgui\src\window.cpp:1338: error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script in function 'cvWaitKey'
원인
openCV 버전이 달라서 오류가 났다
cv2.error: OpenCV(4.7.0) D:\\a\\opencv-python\\opencv-python\\opencv\\modules\\highgui\\src\\window.cpp:1338: error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script in function 'cvWaitKey'
해결방법
openCV를 재설치함
pip uninstall opencv-python
pip install opencv-python
반응형
'언어 > Python' 카테고리의 다른 글
| [Python] Expected indented blockPylance (0) | 2024.01.04 |
|---|---|
| [Python] corrupt image/label: could not convert string to float: '\ufeff0’ (0) | 2024.01.04 |
| [Python] cv2 경로의 한글 깨짐 (0) | 2023.09.22 |
| [Python] youtube-dl: Unable to extract uploader id / KeyError: 'like_count' (0) | 2023.02.28 |
| [Python] 네이버 뉴스 크롤링 (0) | 2023.02.26 |