ORB Feature Detector

ORB is a fast feature detector/descriptor based on FAST + BRIEF.

import cv2


def orb_features(img):
orb = cv2.ORB_create()
return orb.detectAndCompute(img,None)
← Back to Gallery