OpenCvSharp.AKAZE.Create C# (CSharp) Method

Create() public static method

The AKAZE constructor
public static Create ( OpenCvSharp descriptorType = OpenCvSharp.AKAZEDescriptorType.MLDB, int descriptorSize, int descriptorChannels = 3, float threshold = 0.001f, int nOctaves = 4, int nOctaveLayers = 4, KAZEDiffusivity diffusivity = KAZEDiffusivity.DiffPmG2 ) : AKAZE
descriptorType OpenCvSharp
descriptorSize int
descriptorChannels int
threshold float
nOctaves int
nOctaveLayers int
diffusivity KAZEDiffusivity
return AKAZE
        public static AKAZE Create(
            OpenCvSharp.AKAZEDescriptorType descriptorType = OpenCvSharp.AKAZEDescriptorType.MLDB,
            int descriptorSize = 0,
            int descriptorChannels = 3,
            float threshold = 0.001f,
            int nOctaves = 4,
            int nOctaveLayers = 4,
            KAZEDiffusivity diffusivity = KAZEDiffusivity.DiffPmG2)
        {
            IntPtr ptr = NativeMethods.features2d_AKAZE_create(
                (int) descriptorType, descriptorSize, descriptorChannels,
                threshold, nOctaves, nOctaveLayers, (int) diffusivity);
            return new AKAZE(ptr);
        }