/// <summary>
 /// Resizes image (input array is resized to fit the destination array)
 /// TODO: Remove 'dst' argument and return a CVImage object
 /// </summary>
 public void Resize(CVArr dst, ResizeInterpolation interpolation)
 {
     PInvoke.cvResize(new __CvArrPtr(this), new __CvArrPtr(dst), (int)interpolation);
     CVUtils.CheckLastError();
 }
 /// <summary>
 /// Resizes image (input array is resized to fit the destination array)
 /// TODO: Remove 'dst' argument and return a CVImage object
 /// </summary>
 public void Resize(CVArr dst, ResizeInterpolation interpolation)
 {
     PInvoke.cvResize(new __CvArrPtr(this), new __CvArrPtr(dst), (int)interpolation);
 }
Example #3
0
 /// <summary>
 /// Resizes image (input array is resized to fit the destination array)
 /// TODO: Remove 'dst' argument and return a CVImage object
 /// </summary>
 public void Resize(CVArr dst, ResizeInterpolation interpolation)
 {
     PInvoke.cvResize(new __CvArrPtr(this), new __CvArrPtr(dst), (int)interpolation);
     CVUtils.CheckLastError();
 }