HomeSort by relevance Sort by last modified time
    Searched full:norm (Results 176 - 200 of 1009) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/opencv3/modules/cudaarithm/src/
reductions.cpp 50 double cv::cuda::norm(InputArray, int, InputArray) { throw_no_cuda(); return 0.0; } function in class:cv::cuda
52 double cv::cuda::norm(InputArray, InputArray, int) { throw_no_cuda(); return 0.0; } function in class:cv::cuda
85 // norm
117 double cv::cuda::norm(InputArray _src, int normType, InputArray _mask)
  /external/opencv3/modules/cudalegacy/test/
test_calib3d.cpp 143 ASSERT_LE(cv::norm(res_gold - res) / cv::norm(res_gold), 1e-3f);
186 ASSERT_LE(cv::norm(rvec - rvec_gold), 1e-3);
187 ASSERT_LE(cv::norm(tvec - tvec_gold), 1e-3);
  /external/opencv3/modules/python/test/
test.py 73 self.assertTrue(cv2.norm(a, cv2.NORM_L1) == 15)
75 self.assertEqual(cv2.norm(absa1, absa0, cv2.NORM_INF), 0)
101 if cv2.norm(out[2,:]) < 1e-3:
103 self.assertLess(cv2.norm(out, np.float64([[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0]])), 1e-3)
  /external/webrtc/webrtc/modules/video_processing/
content_analysis.cc 257 const float norm = static_cast<float>(pixelMSA); local
260 spatial_pred_err_ = spatialErr / norm;
262 spatial_pred_err_h_ = spatialErrH / norm;
264 spatial_pred_err_v_ = spatialErrV / norm;
  /frameworks/rs/
rsComponent.h 34 void set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize=1);
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
bits_test.go 66 // norm returns the normalized bits for x: It removes multiple equal entries
69 func (x Bits) norm() Bits {
99 got := fmt.Sprintf("%v", test.x.norm())
111 x = x.norm()
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
bits_test.go 63 // norm returns the normalized bits for x: It removes multiple equal entries
66 func (x Bits) norm() Bits {
96 got := fmt.Sprintf("%v", test.x.norm())
108 x = x.norm()
  /prebuilts/go/darwin-x86/src/cmd/cover/
profile.go 132 Norm float64 // Count normalized to [0..1].
147 // boundary returns a Boundary, populating the Norm field with a normalized Count.
154 b.Norm = 0.8 // Profile is in"set" mode; we want a heat map. Use cov8 in the CSS.
156 b.Norm = math.Log(float64(count)) / divisor
  /prebuilts/go/darwin-x86/src/math/big/
bits_test.go 63 // norm returns the normalized bits for x: It removes multiple equal entries
66 func (x Bits) norm() Bits {
96 got := fmt.Sprintf("%v", test.x.norm())
108 x = x.norm()
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
bits_test.go 66 // norm returns the normalized bits for x: It removes multiple equal entries
69 func (x Bits) norm() Bits {
99 got := fmt.Sprintf("%v", test.x.norm())
111 x = x.norm()
  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
bits_test.go 63 // norm returns the normalized bits for x: It removes multiple equal entries
66 func (x Bits) norm() Bits {
96 got := fmt.Sprintf("%v", test.x.norm())
108 x = x.norm()
  /prebuilts/go/linux-x86/src/cmd/cover/
profile.go 132 Norm float64 // Count normalized to [0..1].
147 // boundary returns a Boundary, populating the Norm field with a normalized Count.
154 b.Norm = 0.8 // Profile is in"set" mode; we want a heat map. Use cov8 in the CSS.
156 b.Norm = math.Log(float64(count)) / divisor
  /prebuilts/go/linux-x86/src/math/big/
bits_test.go 63 // norm returns the normalized bits for x: It removes multiple equal entries
66 func (x Bits) norm() Bits {
96 got := fmt.Sprintf("%v", test.x.norm())
108 x = x.norm()
  /external/ceres-solver/internal/ceres/
implicit_schur_complement_test.cc 144 if ((y - z).norm() > kEpsilon) {
153 if ((isc.rhs() - rhs).norm() > kEpsilon) {
168 if ((sol - reference_solution).norm() > kEpsilon) {
  /external/eigen/Eigen/src/Geometry/
EulerAngles.h 59 Scalar s2 = Vector2(coeff(j,i), coeff(k,i)).norm();
64 Scalar s2 = Vector2(coeff(j,i), coeff(k,i)).norm();
85 Scalar c2 = Vector2(coeff(i,i), coeff(i,j)).norm();
  /external/eigen/test/
umeyama.cpp 116 const Scalar error = ( cR_t_umeyama*src - dst ).norm() / dst.norm();
133 // Also if c is to small compared to t.norm(), problem is ill-posed (cf. Bug 744)
  /external/eigen/unsupported/Eigen/
AlignedVector3 148 m_coeffs /= norm();
153 return AlignedVector3(m_coeffs / norm());
168 inline Scalar norm() const
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
LevenbergMarquardt.h 192 /* and calculate its norm. */
236 /* on the first iteration, calculate the norm of the scaled x */
250 /* compute the norm of the scaled gradient. */
257 /* test for convergence of the gradient norm. */
270 /* store the direction p and x + p. calculate the norm of p. */
279 /* evaluate the function at x + p and calculate its norm. */
411 /* and calculate its norm. */
492 /* on the first iteration, calculate the norm of the scaled x */
500 /* compute the norm of the scaled gradient. */
507 /* test for convergence of the gradient norm. *
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btShapeHull.cpp 48 btVector3 norm; local
49 m_shape->getPreferredPenetrationDirection(i,norm);
50 getUnitSpherePoints()[numSampleDirections] = norm;
  /external/opencv3/modules/calib3d/test/
test_affine3d_estimator.cpp 111 if (cvtest::norm(aff_est, aff, NORM_INF) > thres)
113 //cout << cvtest::norm(aff_est, aff, NORM_INF) << endl;
164 if (cvtest::norm(aff_est, aff, NORM_INF) > thres)
  /external/libopus/celt/
bands.c 119 /* We're adding one here to ensure the normalized band isn't larger than unity norm */
359 opus_val16 norm; local
365 norm = EPSILON + celt_sqrt(EPSILON+MULT16_16(left,left)+MULT16_16(right,right));
366 a1 = DIV32_16(SHL32(EXTEND32(left),14),norm);
367 a2 = DIV32_16(SHL32(EXTEND32(right),14),norm);
402 /* Compute the norm of X+Y and X-Y as |X|^2 + |Y|^2 +/- sum(xy) */
699 mid and side because we know that 1) they have unit norm and
1363 celt_norm * OPUS_RESTRICT norm, * OPUS_RESTRICT norm2; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
tstnorm.cpp 165 Normalizer* norm = new Normalizer("", UNORM_NFD); local
170 backAndForth(norm, canonTests[i][0]);
174 norm->setMode(UNORM_NFC);
176 backAndForth(norm, canonTests[i][0]);
179 delete norm;
184 Normalizer* norm = new Normalizer("", UNORM_NFD); local
185 iterateTest(norm, canonTests, ARRAY_LENGTH(canonTests), 1);
187 delete norm;
192 Normalizer* norm = new Normalizer("", UNORM_NFKD); local
193 iterateTest(norm, compatTests, ARRAY_LENGTH(compatTests), 1)
202 Normalizer* norm = new Normalizer("", UNORM_NFC); local
212 Normalizer* norm = new Normalizer("", UNORM_NFKC); local
232 Normalizer* norm = new Normalizer("", UNORM_NFC); local
254 Normalizer* norm = new Normalizer("", UNORM_NFD); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_const.c 86 else if(type.norm)
98 else if(type.norm)
137 if(type.norm)
172 if(type.norm)
265 else if(!type.norm)
  /prebuilts/go/darwin-x86/test/bench/shootout/
timing.sh 175 runonly echo 'spectral-norm 5500'
176 run "gcc $gccm -O2 spectral-norm.c -lm" a.$EXE 5500
177 run 'gccgo -O2 spectral-norm.go' a.$EXE -n 5500
178 run 'gc spectral-norm' a.$EXE -n 5500
179 run 'gc_B spectral-norm' a.$EXE -n 5500
  /prebuilts/go/linux-x86/test/bench/shootout/
timing.sh 175 runonly echo 'spectral-norm 5500'
176 run "gcc $gccm -O2 spectral-norm.c -lm" a.$EXE 5500
177 run 'gccgo -O2 spectral-norm.go' a.$EXE -n 5500
178 run 'gc spectral-norm' a.$EXE -n 5500
179 run 'gc_B spectral-norm' a.$EXE -n 5500

Completed in 989 milliseconds

1 2 3 4 5 6 78 91011>>