Ejemplo n.º 1
0
 /// <summary>
 /// Calculates the image Laplacian: (d2/dx + d2/dy)I
 /// TODO: Remove 'dst' argument and return a CVImage object
 /// </summary>
 public void Laplace(CVArr dst, int aperture_size)
 {
     PInvoke.cvLaplace(new __CvArrPtr(this), new __CvArrPtr(dst), aperture_size);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Calculates the image Laplacian: (d2/dx + d2/dy)I
 /// TODO: Remove 'dst' argument and return a CVImage object
 /// </summary>
 public void Laplace(CVArr dst, int aperture_size)
 {
     PInvoke.cvLaplace(new __CvArrPtr(this), new __CvArrPtr(dst), aperture_size);
     CVUtils.CheckLastError();
 }