features2d

KAZEDetector

fields

KAZEDetector = {
extended : boolean ,
upright : boolean ,
nOctaves : int ,
nOctaveLayers : int ,
diffusivity : int ,
threshold : number
}

constructors

constructor ( extended : boolean = false , upright : boolean = false , threshold : number = 0.01 , nOctaves : int = 4 , nOctaveLayers : int = 4 , diffusivity : int = KAZE.DIFF_PM_G2 )

functions

compute

Result : Mat
compute ( image : Mat , keypoints : KeyPoint []) : Result
computeAsync ( image : Mat , keypoints : KeyPoint []) : Promise < Result >
computeAsync ( image : Mat , keypoints : KeyPoint [] , callback ( err : Error , Result res )) : void

detect

Result : KeyPoint []
detect ( image : Mat ) : Result
detectAsync ( image : Mat ) : Promise < Result >
detectAsync ( image : Mat , callback ( err : Error , Result res )) : void