import numpy as np import cv2 from matplotlib import pyplot as plt img = cv2.imread('test.jpg',0) orb = cv2.ORB() kp = orb.detect(img,None) kp, des = orb.compute(img, k
Solution 1:
If you have pip configured, you can run
$ pip install six
or (for python 3)
$ pip3 install six
Post a Comment for "Importerror: No Module Named Six [windows]"