일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- #일상영어
- tensorflow update
- object detection
- convexhull
- tokenizing
- 영어
- findContours
- 영어명언
- python 알고리즘
- word embedding
- c언어
- #영어
- #English
- #실생활 영어
- #opencv
- python list
- #프로젝트
- keras
- #영어 명언
- 딥러닝
- #1일1영어
- TensorFlow
- #Android
- python __init__
- text2img
- 이미지 생성
- #실생활영어
- Convolution Neural Network
- opencv SURF
- 완전탐색
Archives
- Today
- Total
When will you grow up?
AttributeError: module 'cv2.dnn' has no attribute 'DictValue' 본문
02. Study/Error
AttributeError: module 'cv2.dnn' has no attribute 'DictValue'
미카이 2024. 8. 12. 10:13rembg import 시 다음과 같은 오류가 발생하였다.
from rembg import remove
ImportError 내용
ImportError: module 'cv2.dnn' has no attribute 'DictValue'
인터넷글을 찾아보니 다음과 같이 opencv 문제로 버전문제라고 버전을 바꾸라고 나와있다.
pip install opencv-python==4.8.0.74
하지만 위와 같이 버전을 바꿔도 오류가 지속적으로 발생하여 구글링을 해본 결과 다음과 같은 방법으로 해결할 수 있었다.
# 1. download the autofix tool
pip install opencv-fixer==0.2.5
# 2. execute
python -c "from opencv_fixer import AutoFix; AutoFix()"
해당 이슈는 다음 git issues에서 확인할 수 있다.
'02. Study > Error' 카테고리의 다른 글
[Error] torch.distributed.elastic.multiprocessing.errors.ChildFailedError 오류 (0) | 2024.12.08 |
---|
Comments