Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1023 Bytes

AKAZEDetector.md

File metadata and controls

50 lines (39 loc) · 1023 Bytes

AKAZEDetector

Accessors

AKAZEDetector {
  descriptorType: Int,
  descriptorSize: Int,
  descriptorChannels: Int,
  nOctaves: Int,
  nOctaveLayers: Int,
  diffusivity: Int,
  threshold: Number
}

Constructors

AKAZEDetector : new AKAZEDetector(Int descriptorType = AKAZE.DESCRIPTOR_MLDB, Int descriptorSize = 0, Int descriptorChannels = 3, Number threshold = 0.01, Int nOctaves = 4, Int nOctaveLayers = 4, Int diffusivity = KAZE.DIFF_PM_G2)

Methods

detect

[KeyPoint] : detector.detect(Mat image)

detectAsync

detector.detectAsync(Mat image, callback(Error err, [KeyPoint] kps))

compute

Mat : detector.compute(Mat image, [KeyPoint] keypoints)

computeAsync

detector.computeAsync(Mat image, [KeyPoint] keypoints, callback(Error err, Mat descriptors))