HomeSort by relevance Sort by last modified time
    Searched full:getgaussiankernel (Results 1 - 11 of 11) sorted by null

  /external/opencv3/modules/cudafilters/include/opencv2/
cudafilters.hpp 226 @param ksize Aperture size. See getGaussianKernel for details.
227 @param sigma1 Gaussian sigma in the horizontal direction. See getGaussianKernel for details.
  /external/opencv3/modules/cudaoptflow/src/
farneback.cpp 422 Mat g = getGaussianKernel(smoothSize, sigma, CV_32F);
439 Mat g = getGaussianKernel(winSize_, winSize_/2*0.3f, CV_32F);
  /external/opencv3/doc/py_tutorials/py_imgproc/py_filtering/
py_filtering.markdown 95 If you want, you can create a Gaussian kernel with the function, **cv2.getGaussianKernel()**.
  /external/opencv3/doc/py_tutorials/py_imgproc/py_transforms/py_fourier_transform/
py_fourier_transform.markdown 243 x = cv2.getGaussianKernel(5,10)
  /external/opencv3/modules/cudafilters/src/
filtering.cpp 486 Mat kx = getGaussianKernel(ksize.width, sigma1, CV_32F);
491 ky = getGaussianKernel(ksize.height, sigma2, CV_32F);
    [all...]
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java 840 // C++: Mat getGaussianKernel(int ksize, double sigma, int ktype = CV_64F)
843 //javadoc: getGaussianKernel(ksize, sigma, ktype)
844 public static Mat getGaussianKernel(int ksize, double sigma, int ktype)
852 //javadoc: getGaussianKernel(ksize, sigma)
853 public static Mat getGaussianKernel(int ksize, double sigma)
    [all...]
imgproc.cpp     [all...]
  /external/opencv3/modules/imgproc/misc/java/test/
ImgprocTest.java 947 dst = Imgproc.getGaussianKernel(1, 0.5);
954 dst = Imgproc.getGaussianKernel(3, 0.8, CvType.CV_32F);
    [all...]
  /external/opencv3/modules/imgproc/src/
smooth.cpp     [all...]
  /external/opencv3/modules/video/src/
optflowgf.cpp 823 Mat g = getGaussianKernel(smoothSize, sigma, CV_32F);
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp 328 cv::getGaussianKernel*/
    [all...]

Completed in 597 milliseconds