cv2.findContours를 처리하는 줄에서 에러가 발생하였다.
ValueError: not enough values to unpack (expected 3, got 2)
다음의 에러 문구를 출력하였는데,
OpenCV 3.4.3 이하 버전에서는 코드를 달리 작성해야 하는 것 같다.
예제를 보고
_, contours, _ = cv2.findContours(…)와 같이 작성하였는데,
contours, _ = cv2.findContours(…)
로 작성하니 정상 작동하였다.
'에러 > python' 카테고리의 다른 글
[Python] urllib has no attribute quote 에러 (0) | 2021.01.08 |
---|---|
resize 에러 (0) | 2020.11.29 |
TypeError: slice indices must be integers or None or have an __index__ method 에러 (0) | 2020.11.14 |
[conda] command not found error your shell has not been properly configured to use conda activate 에러 (0) | 2020.10.04 |
pip install dlib 에러 (0) | 2020.09.27 |
댓글