I installed opencv-contrib
that has ximgproc
as a sub-module, using this:
pip install opencv_python-3.2.0+contrib-cp36-cp36m-win_amd64.whl
when I run below lines:
import cv2
# ...
right_matcher = cv2.ximgproc.createRightMatcher(left_matcher)
I am getting this error:
AttributeError: module 'cv2.cv2' has no attribute 'ximgproc'
How can I use ximgproc
functions?