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

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

private cvReleaseStructuringElement ( IntPtr &ppElement ) : void
ppElement IntPtr
Результат void
        public static extern void cvReleaseStructuringElement(ref IntPtr ppElement);

Usage Example

Пример #1
0
 /// <summary>
 /// Release the unmanaged memory associated to this object
 /// </summary>
 protected override void DisposeObject()
 {
     CvInvoke.cvReleaseStructuringElement(ref _ptr);
     if (_handle.IsAllocated)
     {
         _handle.Free();
     }
 }
CvInvoke