FAST Corner Detector

FAST detects corners by comparing circle‑of‑pixels intensities around a candidate pixel.

import cv2


def fast_detector(img):
fast = cv2.FastFeatureDetector_create()
return fast.detect(img,None)
← Back to Gallery