Home
last modified time | relevance | path

Searched refs:winDisp (Results 1 – 1 of 1) sorted by path

/dports/graphics/opencv/opencv-4.5.3/contrib/modules/stereo/src/
H A Dmatching.hpp106 …static double symetricVInterpolation(short *c, int iwjp, int widthDisp, int winDisp,const int sear… in symetricVInterpolation() argument
108 if (winDisp == 0 || winDisp == widthDisp - 1) in symetricVInterpolation()
109 return winDisp; in symetricVInterpolation()
111 m2 = c[(iwjp + (winDisp - 1) * search_region) * widthDisp + winDisp - 1]; in symetricVInterpolation()
112 m3 = c[(iwjp + (winDisp + 1) * search_region)* widthDisp + winDisp + 1]; in symetricVInterpolation()
113 m1 = c[(iwjp + winDisp * search_region) * widthDisp + winDisp]; in symetricVInterpolation()
116 if (m2m1 == 0 || m3m1 == 0) return winDisp; in symetricVInterpolation()
128 p = winDisp + p; in symetricVInterpolation()