Emgu.CV.CvInvoke.cvReleaseStereoGCState C# (CSharp) Method

cvReleaseStereoGCState() private method

private cvReleaseStereoGCState ( IntPtr &state ) : void
state IntPtr
return void
        public static extern void cvReleaseStereoGCState(ref IntPtr state);

Usage Example

コード例 #1
0
 /// <summary>
 /// Release the stereo state and all the memory associate with it
 /// </summary>
 protected override void DisposeObject()
 {
     Marshal.StructureToPtr(State, _ptr, false);
     CvInvoke.cvReleaseStereoGCState(ref _ptr);
 }
CvInvoke