[문제]
OpenCV을 이용하여 프로젝트를 개발하던 중 아래와 같은 에러 메시지가 나타났다.
AttributeError: module 'cv2.cv2' has no attribute 'face'
원인은 'face'를 사용하기 위한 모듈이 프로젝트 내에 없기 때문이다.
[해결]
터미널에 아래와 같이 작성하여 해당 모듈을 설치하면 된다.
pip install opencv-contrib-python
그래도 해결되지 않는다면 아래와 같이 해당 모듈을 제거하고 다시 설치하면 된다.
pip uninstall opencv-contrib-python
pip install opencv-contrib-python
'OpenCV > 에러 해결' 카테고리의 다른 글
[OpenCV] SourceReaderCB terminating async callback 해결 (0) | 2021.09.25 |
---|---|
[OpenCV] No module named 'PIL' 해결 (0) | 2021.09.25 |