features2d

AKAZEDetector

fields

AKAZEDetector = {
descriptorType : int ,
descriptorSize : int ,
descriptorChannels : int ,
nOctaves : int ,
nOctaveLayers : int ,
diffusivity : int ,
threshold : number
}

constructors

constructor ( descriptorType : int = AKAZE.DESCRIPTOR_MLDB , descriptorSize : int = 0 , descriptorChannels : int = 3 , 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