/external/opencv3/modules/cudafilters/perf/ |
perf_filters.cpp | 250 cv::Ptr<cv::cuda::Filter> gauss = cv::cuda::createGaussianFilter(d_src.type(), -1, cv::Size(ksize, ksize), 0.5); local 252 TEST_CYCLE() gauss->apply(d_src, dst);
|
/external/opencv3/modules/cudafilters/test/ |
test_filters.cpp | 455 cv::Ptr<cv::cuda::Filter> gauss = cv::cuda::createGaussianFilter(src.type(), -1, ksize, sigma1, sigma2, borderType); local 458 gauss->apply(loadMat(src, useRoi), dst);
|
/external/flac/libFLAC/include/protected/ |
stream_encoder.h | 72 } gauss; member in union:__anon12684::__anon12685
|
/external/opencv3/samples/cpp/tutorial_code/gpu/gpu-basics-similarity/ |
gpu-basics-similarity.cpp | 321 Ptr<cuda::Filter> gauss = cuda::createGaussianFilter(vI2[0].type(), -1, Size(11, 11), 1.5); local 333 gauss->apply(vI1[i], mu1); 334 gauss->apply(vI2[i], mu2); 343 gauss->apply(I1_2, sigma1_2); 346 gauss->apply(I2_2, sigma2_2); 349 gauss->apply(I1_I2, sigma12); 392 Ptr<cuda::Filter> gauss = cuda::createGaussianFilter(b.vI1[0].type(), -1, Size(11, 11), 1.5); local 400 gauss->apply(b.vI1[i], b.mu1, stream); 401 gauss->apply(b.vI2[i], b.mu2, stream); 407 gauss->apply(b.I1_2, b.sigma1_2, stream) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
random.py | 54 "gauss","betavariate","paretovariate","weibullvariate", 554 ## -------------------- Gauss (faster alternative) -------------------- 556 def gauss(self, mu, sigma): member in class:Random 869 _test_generator(N, gauss, (0.0, 1.0)) 894 gauss = _inst.gauss variable
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
random.py | 54 "gauss","betavariate","paretovariate","weibullvariate", 554 ## -------------------- Gauss (faster alternative) -------------------- 556 def gauss(self, mu, sigma): member in class:Random 869 _test_generator(N, gauss, (0.0, 1.0)) 894 gauss = _inst.gauss variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
random.py | 54 "gauss","betavariate","paretovariate","weibullvariate", 554 ## -------------------- Gauss (faster alternative) -------------------- 556 def gauss(self, mu, sigma): member in class:Random 869 _test_generator(N, gauss, (0.0, 1.0)) 894 gauss = _inst.gauss variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
random.py | 54 "gauss","betavariate","paretovariate","weibullvariate", 554 ## -------------------- Gauss (faster alternative) -------------------- 556 def gauss(self, mu, sigma): member in class:Random 869 _test_generator(N, gauss, (0.0, 1.0)) 894 gauss = _inst.gauss variable
|
/external/opencv3/samples/gpu/performance/ |
tests.cpp | 938 cv::Ptr<cv::cuda::Filter> gauss = cv::cuda::createGaussianFilter(d_src.type(), -1, cv::Size(3, 3), 1); local 940 gauss->apply(d_src, d_dst); 943 gauss->apply(d_src, d_dst);
|