airtest.aircv.keypoint_matching module

Detect keypoints with KAZE/AKAZE/BRISK/ORB. No need for opencv-contrib module.

class KAZEMatching(im_search, im_source, threshold=0.8, rgb=True)[源代码]

基类:KeypointMatching

KAZE Matching.

class BRISKMatching(im_search, im_source, threshold=0.8, rgb=True)[源代码]

基类:KeypointMatching

BRISK Matching.

METHOD_NAME = 'BRISK'
init_detector()[源代码]

Init keypoint detector object.

class AKAZEMatching(im_search, im_source, threshold=0.8, rgb=True)[源代码]

基类:KeypointMatching

AKAZE Matching.

METHOD_NAME = 'AKAZE'
init_detector()[源代码]

Init keypoint detector object.

class ORBMatching(im_search, im_source, threshold=0.8, rgb=True)[源代码]

基类:KeypointMatching

ORB Matching.

METHOD_NAME = 'ORB'
init_detector()[源代码]

Init keypoint detector object.