Programming/python(파이썬)
cv2.ximgproc 없을 경우
구차니
2024. 2. 28. 23:31
contrib 패키지를 설치해주면 해결!
오늘자 기준으로 한 63MB 정도 된다. 꽤나 큰 편 인 듯
$ python3 depth.py Traceback (most recent call last): File "/home/minimonk/src/DisparityMapfromStereoPair/depth.py", line 17, in <module> right_matcher = cv.ximgproc.createRightMatcher(left_matcher); AttributeError: module 'cv2' has no attribute 'ximgproc' $ pip install opencv-contrib-python |
[링크 : https://stackoverflow.com/questions/57427233/module-cv2-cv2-has-no-attribute-ximgproc]