Выполняется https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_feature2d/py_fast/py_fast.html руководство для начинающих
import numpy as np import cv2 from matplotlib import pyplot as plt img = cv2.imread('simple.jpg',0) fast = cv2.FastFeatureDetector() # find and draw the keypoints kp = fast.detect(img,None)
, но ошибка появляется уже в последней строке
TypeError: Incorrect type of self (must be 'Feature2D' or its derivative)