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

private cvInitUndistortMap ( IntPtr intrinsicMatrix, IntPtr distortionCoeffs, IntPtr mapx, IntPtr mapy ) : void
intrinsicMatrix IntPtr
distortionCoeffs IntPtr
mapx IntPtr
mapy IntPtr
Результат void
 /// <summary>
 /// Pre-computes the undistortion map - coordinates of the corresponding pixel in the distorted image for every pixel in the corrected image. Then, the map (together with input and output images) can be passed to cvRemap function.
 /// </summary>
 /// <param name="width">The width of the image</param>
 /// <param name="height">The height of the image</param>
 /// <param name="mapx">The output array of x-coordinates of the map</param>
 /// <param name="mapy">The output array of y-coordinates of the map</param>
 public void InitUndistortMap(int width, int height, out Matrix <float> mapx, out Matrix <float> mapy)
 {
     mapx = new Matrix <float>(height, width);
     mapy = new Matrix <float>(height, width);
     CvInvoke.cvInitUndistortMap(IntrinsicMatrix.Ptr, DistortionCoeffs.Ptr, mapx, mapy);
 }