コード例 #1
0
 /// <summary>
 /// Up-samples image and smoothes the result with gaussian kernel.
 ///   dst_width = src_width*2,
 ///   dst_height = src_height*2
 /// TODO: Remove 'dst' argument and return a CVImage object
 /// </summary>
 public void PyrUp(CVImage dst, PyrFilter filter)
 {
     PInvoke.cvPyrUp(new __CvImagePtr(this), new __CvImagePtr(dst), (int)filter);
 }
コード例 #2
0
 /// <summary>
 /// Up-samples image and smoothes the result with gaussian kernel.
 ///   dst_width = src_width*2,
 ///   dst_height = src_height*2
 /// TODO: Remove 'dst' argument and return a CVImage object
 /// </summary>
 public void PyrUp(CVImage dst, PyrFilter filter)
 {
     PInvoke.cvPyrUp(new __CvImagePtr(this), new __CvImagePtr(dst), (int)filter);
     CVUtils.CheckLastError();
 }