HomeSort by relevance Sort by last modified time
    Searched refs:sigma2 (Results 1 - 15 of 15) sorted by null

  /external/iproute2/netem/
stats.c 25 double sigma2=0.0; local
48 sigma2 += ((double)x[i-1] - mu)*((double)x[i-1] - mu);
51 rho = top/sigma2;
56 /*printf("sigma2 = %10.4f\n", sqrt(sigma2/(double)(n-1)));*/
maketable.c 55 double sigma2=0.0; local
67 sigma2 += ((double)x[i-1] - *mu)*((double)x[i-1] - *mu);
70 *rho = top/sigma2;
  /external/opencv3/modules/imgproc/test/ocl/
test_filters.cpp 223 double sigma2 = j % 2 == 0 ? sigma1 : rng.uniform(0.1, 1.0); local
225 OCL_OFF(cv::GaussianBlur(src_roi, dst_roi, Size(ksize, ksize), sigma1, sigma2, borderType));
226 OCL_ON(cv::GaussianBlur(usrc_roi, udst_roi, Size(ksize, ksize), sigma1, sigma2, borderType));
  /external/opencv3/modules/cudafilters/include/opencv2/
cudafilters.hpp 228 @param sigma2 Gaussian sigma in the vertical direction. If 0, then
229 \f$\texttt{sigma2}\leftarrow\texttt{sigma1}\f$ .
237 double sigma1, double sigma2 = 0,
  /external/opencv3/modules/cudafilters/src/
filtering.cpp 468 Ptr<Filter> cv::cuda::createGaussianFilter(int srcType, int dstType, Size ksize, double sigma1, double sigma2, int rowBorderMode, int columnBorderMode)
472 if (sigma2 <= 0)
473 sigma2 = sigma1;
478 if (ksize.height <= 0 && sigma2 > 0)
479 ksize.height = cvRound(sigma2 * (depth == CV_8U ? 3 : 4)*2 + 1) | 1;
484 sigma2 = std::max(sigma2, 0.0);
488 if (ksize.height == ksize.width && std::abs(sigma1 - sigma2) < DBL_EPSILON)
491 ky = getGaussianKernel(ksize.height, sigma2, CV_32F);
    [all...]
  /external/opencv3/modules/imgproc/src/
filterengine.hpp 318 double sigma1, double sigma2 = 0,
smooth.cpp     [all...]
  /external/opencv/cv/src/
cvsmooth.cpp     [all...]
  /external/opencv3/modules/cudafilters/test/
test_filters.cpp 453 double sigma2 = randomDouble(0.1, 1.0); local
455 cv::Ptr<cv::cuda::Filter> gauss = cv::cuda::createGaussianFilter(src.type(), -1, ksize, sigma1, sigma2, borderType);
461 cv::GaussianBlur(src, dst_gold, ksize, sigma1, sigma2, borderType);
  /external/opencv3/modules/ml/src/
ann_mlp.cpp 577 double m = s/count, sigma2 = s2/count - m*m; local
578 scale[j*2] = sigma2 < DBL_EPSILON ? 1 : 1./sqrt(sigma2);
    [all...]
  /external/opencv/ml/src/
mlann_mlp.cpp 600 double m = s/count, sigma2 = s2/count - m*m; local
601 scale[j*2] = sigma2 < DBL_EPSILON ? 1 : 1./sqrt(sigma2);
    [all...]
  /external/ImageMagick/www/api/
morphology.php 146 <dd> DoG:{radius},{sigma1},{sigma2} "Difference of Gaussians" Kernel. As "Gaussian" but with a gaussian produced by 'sigma2' subtracted from the gaussian produced by 'sigma1'. Typically sigma2 &gt; sigma1. The result is a zero-summing kernel. </dd>
    [all...]
  /external/ImageMagick/MagickCore/
morphology.c 609 % DoG:{radius},{sigma1},{sigma2}
611 % As "Gaussian" but with a gaussian produced by 'sigma2' subtracted
612 % from the gaussian produced by 'sigma1'. Typically sigma2 > sigma1.
1050 sigma2 = fabs(args->xi), local
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
imgproc_c.h 107 @param sigma2 additional parameter for bilateral filtering
116 double sigma2 CV_DEFAULT(0));
    [all...]
  /external/opencv/cv/include/
cv.h 86 double sigma2 CV_DEFAULT(0));
    [all...]

Completed in 327 milliseconds