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

  /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...]
  /cts/apps/CtsVerifier/assets/scripts/power_monitors/
_dummy.py 81 values = [ random.gauss(base[(self._sequence-1)%4], 0.0005) for _ in range(100)]
  /external/flac/libFLAC/include/protected/
stream_encoder.h 72 } gauss; member in union:__anon12684::__anon12685
  /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
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_random.py 130 # by (and only by) the .gauss() method.
135 y1 = self.gen.gauss(0, 1)
139 y2 = self.gen.gauss(0, 1)
186 # by (and only by) the .gauss() method.
191 y1 = self.gen.gauss(0, 1)
195 y2 = self.gen.gauss(0, 1)
499 g.random = x[:].pop; g.gauss(0.0, 1.0)
549 (g.gauss, (10.0, 0.0), 10.0),
test_math.py 535 from random import random, gauss, shuffle
540 v = gauss(0, random()) ** 7 - s
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_random.py 130 # by (and only by) the .gauss() method.
135 y1 = self.gen.gauss(0, 1)
139 y2 = self.gen.gauss(0, 1)
186 # by (and only by) the .gauss() method.
191 y1 = self.gen.gauss(0, 1)
195 y2 = self.gen.gauss(0, 1)
499 g.random = x[:].pop; g.gauss(0.0, 1.0)
549 (g.gauss, (10.0, 0.0), 10.0),
test_math.py 535 from random import random, gauss, shuffle
540 v = gauss(0, random()) ** 7 - s
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_random.py 130 # by (and only by) the .gauss() method.
135 y1 = self.gen.gauss(0, 1)
139 y2 = self.gen.gauss(0, 1)
186 # by (and only by) the .gauss() method.
191 y1 = self.gen.gauss(0, 1)
195 y2 = self.gen.gauss(0, 1)
499 g.random = x[:].pop; g.gauss(0.0, 1.0)
549 (g.gauss, (10.0, 0.0), 10.0),
test_math.py 535 from random import random, gauss, shuffle
540 v = gauss(0, random()) ** 7 - s
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_random.py 130 # by (and only by) the .gauss() method.
135 y1 = self.gen.gauss(0, 1)
139 y2 = self.gen.gauss(0, 1)
186 # by (and only by) the .gauss() method.
191 y1 = self.gen.gauss(0, 1)
195 y2 = self.gen.gauss(0, 1)
499 g.random = x[:].pop; g.gauss(0.0, 1.0)
549 (g.gauss, (10.0, 0.0), 10.0),
test_math.py 535 from random import random, gauss, shuffle
540 v = gauss(0, random()) ** 7 - s
    [all...]
  /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/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);
  /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/
stream_encoder.c     [all...]

Completed in 1141 milliseconds