Emgu.CV.CvInvoke.cvCreateKDTree C# (CSharp) Метод

cvCreateKDTree() приватный Метод

private cvCreateKDTree ( IntPtr desc ) : IntPtr
desc IntPtr
Результат IntPtr
        public static extern IntPtr cvCreateKDTree(IntPtr desc);

Usage Example

Пример #1
0
 /// <summary>
 /// Create a k-d tree from the specific feature descriptors
 /// </summary>
 /// <param name="descriptors">The array of feature descriptors</param>
 public FeatureTree(float[][] descriptors)
 {
     _descriptorMatrix = Util.GetMatrixFromDescriptors(descriptors);
     _ptr = CvInvoke.cvCreateKDTree(_descriptorMatrix.Ptr);
 }
All Usage Examples Of Emgu.CV.CvInvoke::cvCreateKDTree
CvInvoke