Home
last modified time | relevance | path

Searched refs:maxR (Results 1 – 5 of 5) sorted by relevance

/external/opencv/cv/src/
Dcvstereogc.cpp436 static inline int icvSmoothnessCostFunc( int da, int db, int maxR, const int* stabR, int scale ) in icvSmoothnessCostFunc() argument
438 return da == db ? 0 : (da == OCCLUDED || db == OCCLUDED ? maxR : stabR[da - db])*scale; in icvSmoothnessCostFunc()
531 int maxR = state2->interactionRadius; in icvComputeEnergy() local
567 E += icvSmoothnessCostFunc(d, d1, maxR, stabR, stabI[left[x*3] - left[x*3+3]] ); in icvComputeEnergy()
572 E += icvSmoothnessCostFunc(d, d1, maxR, stabR, stabI[left[x*3] - left[x*3+step]] ); in icvComputeEnergy()
582 E += icvSmoothnessCostFunc(d, d1, maxR, stabR, stabI[right[x*3] - right[x*3+3]] ); in icvComputeEnergy()
587 … E += icvSmoothnessCostFunc(d, d1, maxR, stabR, stabI[right[x*3] - right[x*3+step]] ); in icvComputeEnergy()
670 int maxR = state2->interactionRadius; in icvAlphaExpand() local
778 E0a = icvSmoothnessCostFunc( d, a, maxR, stabR, scale ); in icvAlphaExpand()
779 Ea0 = icvSmoothnessCostFunc( a, d1, maxR, stabR, scale ); in icvAlphaExpand()
[all …]
/external/skia/tests/
DPaintTest.cpp214 SkRect maxR = fillR; in regression_cubic() local
219 maxR.inset(-inset, -inset); in regression_cubic()
222 REPORTER_ASSERT(reporter, maxR.contains(strokeR)); in regression_cubic()
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
DSweepSphere.java117 private static float getLowestRoot(float a, float b, float c, float maxR) { in getLowestRoot() argument
133 if (r1 > 0 && r1 < maxR){ in getLowestRoot()
137 if (r2 > 0 && r2 < maxR){ in getLowestRoot()
/external/chromium_org/third_party/skia/src/effects/
DSkMorphologyImageFilter.cpp122 int maxB = 0, maxG = 0, maxR = 0, maxA = 0; in dilate() local
130 if (r > maxR) maxR = r; in dilate()
133 *dptr = SkPackARGB32(maxA, maxR, maxG, maxB); in dilate()
/external/skia/src/effects/
DSkMorphologyImageFilter.cpp122 int maxB = 0, maxG = 0, maxR = 0, maxA = 0; in dilate() local
130 if (r > maxR) maxR = r; in dilate()
133 *dptr = SkPackARGB32(maxA, maxR, maxG, maxB); in dilate()