GpuMatCreateFromArr() 개인적인 메소드

private GpuMatCreateFromArr ( IntPtr arr ) : IntPtr
arr System.IntPtr
리턴 System.IntPtr
예제 #1
0
 /// <summary>
 /// Create a GpuMat from an CvArray of the same depth type
 /// </summary>
 /// <param name="arr">The CvArry to be converted to GpuMat</param>
 public GpuMat(CvArray <TDepth> arr)
 {
     _ptr = GpuInvoke.GpuMatCreateFromArr(arr);
 }