Home
last modified time | relevance | path

Searched refs:stabR (Results 1 – 1 of 1) 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()
532 const int* stabR = state2->smoothnessR + CUTOFF; 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()
672 const int* stabR = state2->smoothnessR + CUTOFF; in icvAlphaExpand() local
778 E0a = icvSmoothnessCostFunc( d, a, maxR, stabR, scale ); in icvAlphaExpand()
779 Ea0 = icvSmoothnessCostFunc( a, d1, maxR, stabR, scale ); in icvAlphaExpand()
[all …]