Ejemplo n.º 1
0
        //
        // C++: static Ptr_AKAZE cv::AKAZE::create(AKAZE_DescriptorType descriptor_type = AKAZE::DESCRIPTOR_MLDB, int descriptor_size = 0, int descriptor_channels = 3, float threshold = 0.001f, int nOctaves = 4, int nOctaveLayers = 4, KAZE_DiffusivityType diffusivity = KAZE::DIFF_PM_G2)
        //

        //javadoc: AKAZE::create(descriptor_type, descriptor_size, descriptor_channels, threshold, nOctaves, nOctaveLayers, diffusivity)
        public static AKAZE create(int descriptor_type, int descriptor_size, int descriptor_channels, float threshold, int nOctaves, int nOctaveLayers, int diffusivity)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            AKAZE retVal = AKAZE.__fromPtr__(features2d_AKAZE_create_10(descriptor_type, descriptor_size, descriptor_channels, threshold, nOctaves, nOctaveLayers, diffusivity));

            return(retVal);
#else
            return(null);
#endif
        }
Ejemplo n.º 2
0
        //javadoc: AKAZE::create(descriptor_type, descriptor_size)
        public static AKAZE create(int descriptor_type, int descriptor_size)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            AKAZE retVal = AKAZE.__fromPtr__(features2d_AKAZE_create_15(descriptor_type, descriptor_size));

            return(retVal);
#else
            return(null);
#endif
        }
Ejemplo n.º 3
0
        //javadoc: AKAZE::create()
        public static AKAZE create()
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            AKAZE retVal = AKAZE.__fromPtr__(features2d_AKAZE_create_17());

            return(retVal);
#else
            return(null);
#endif
        }
Ejemplo n.º 4
0
 /**
  * The AKAZE constructor
  *
  *     DESCRIPTOR_KAZE_UPRIGHT, DESCRIPTOR_MLDB or DESCRIPTOR_MLDB_UPRIGHT.
  *     DIFF_CHARBONNIER
  * return automatically generated
  */
 public static AKAZE create()
 {
     return(AKAZE.__fromPtr__(features2d_AKAZE_create_17()));
 }
Ejemplo n.º 5
0
 /**
  * The AKAZE constructor
  *
  *     param descriptor_type Type of the extracted descriptor: DESCRIPTOR_KAZE,
  *     DESCRIPTOR_KAZE_UPRIGHT, DESCRIPTOR_MLDB or DESCRIPTOR_MLDB_UPRIGHT.
  *     DIFF_CHARBONNIER
  * return automatically generated
  */
 public static AKAZE create(int descriptor_type)
 {
     return(AKAZE.__fromPtr__(features2d_AKAZE_create_16(descriptor_type)));
 }
Ejemplo n.º 6
0
 /**
  * The AKAZE constructor
  *
  *     param descriptor_type Type of the extracted descriptor: DESCRIPTOR_KAZE,
  *     DESCRIPTOR_KAZE_UPRIGHT, DESCRIPTOR_MLDB or DESCRIPTOR_MLDB_UPRIGHT.
  *     param descriptor_size Size of the descriptor in bits. 0 -> Full size
  *     param descriptor_channels Number of channels in the descriptor (1, 2, 3)
  *     DIFF_CHARBONNIER
  * return automatically generated
  */
 public static AKAZE create(int descriptor_type, int descriptor_size, int descriptor_channels)
 {
     return(AKAZE.__fromPtr__(features2d_AKAZE_create_14(descriptor_type, descriptor_size, descriptor_channels)));
 }
Ejemplo n.º 7
0
 /**
  * The AKAZE constructor
  *
  *     param descriptor_type Type of the extracted descriptor: DESCRIPTOR_KAZE,
  *     DESCRIPTOR_KAZE_UPRIGHT, DESCRIPTOR_MLDB or DESCRIPTOR_MLDB_UPRIGHT.
  *     param descriptor_size Size of the descriptor in bits. 0 -> Full size
  *     param descriptor_channels Number of channels in the descriptor (1, 2, 3)
  *     param threshold Detector response threshold to accept point
  *     DIFF_CHARBONNIER
  * return automatically generated
  */
 public static AKAZE create(int descriptor_type, int descriptor_size, int descriptor_channels, float threshold)
 {
     return(AKAZE.__fromPtr__(features2d_AKAZE_create_13(descriptor_type, descriptor_size, descriptor_channels, threshold)));
 }
Ejemplo n.º 8
0
 /**
  * The AKAZE constructor
  *
  *     param descriptor_type Type of the extracted descriptor: DESCRIPTOR_KAZE,
  *     DESCRIPTOR_KAZE_UPRIGHT, DESCRIPTOR_MLDB or DESCRIPTOR_MLDB_UPRIGHT.
  *     param descriptor_size Size of the descriptor in bits. 0 -> Full size
  *     param descriptor_channels Number of channels in the descriptor (1, 2, 3)
  *     param threshold Detector response threshold to accept point
  *     param nOctaves Maximum octave evolution of the image
  *     param nOctaveLayers Default number of sublevels per scale level
  *     DIFF_CHARBONNIER
  * return automatically generated
  */
 public static AKAZE create(int descriptor_type, int descriptor_size, int descriptor_channels, float threshold, int nOctaves, int nOctaveLayers)
 {
     return(AKAZE.__fromPtr__(features2d_AKAZE_create_11(descriptor_type, descriptor_size, descriptor_channels, threshold, nOctaves, nOctaveLayers)));
 }