OpenCvSharp.NativeMethods.features2d_BOWImgDescriptorExtractor_descriptorType C# (CSharp) Method

features2d_BOWImgDescriptorExtractor_descriptorType() private method

private features2d_BOWImgDescriptorExtractor_descriptorType ( IntPtr obj ) : int
obj IntPtr
return int
        public static extern int features2d_BOWImgDescriptorExtractor_descriptorType(IntPtr obj);
    }

Usage Example

コード例 #1
0
 /// <summary>
 /// Returns an image descriptor type.
 /// </summary>
 /// <returns></returns>
 public int DescriptorType()
 {
     if (IsDisposed)
     {
         throw new ObjectDisposedException(GetType().Name);
     }
     return(NativeMethods.features2d_BOWImgDescriptorExtractor_descriptorType(ptr));
 }
All Usage Examples Of OpenCvSharp.NativeMethods::features2d_BOWImgDescriptorExtractor_descriptorType
NativeMethods