Searched refs:rofs (Results 1 – 2 of 2) sorted by relevance
/external/opencv/cv/src/ |
D | cvstereobm.cpp | 187 int rofs = -MIN(ndisp - 1 + mindisp, 0); in icvFindStereoCorrespondenceBM_SSE2() local 189 int width1 = width - rofs - ndisp + 1; in icvFindStereoCorrespondenceBM_SSE2() 199 const uchar* rptr0 = right->data.ptr + rofs; in icvFindStereoCorrespondenceBM_SSE2() 225 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2() 258 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2() 395 int rofs = -MIN(ndisp - 1 + mindisp, 0); in icvFindStereoCorrespondenceBM() local 397 int width1 = width - rofs - ndisp + 1; in icvFindStereoCorrespondenceBM() 406 const uchar* rptr0 = right->data.ptr + rofs; in icvFindStereoCorrespondenceBM() 431 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep; in icvFindStereoCorrespondenceBM() 464 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep; in icvFindStereoCorrespondenceBM() [all …]
|
/external/opencv3/modules/calib3d/src/ |
D | stereobm.cpp | 330 int rofs = -MIN(ndisp - 1 + mindisp, 0); in findStereoCorrespondenceBM_SSE2() local 332 int width1 = width - rofs - ndisp + 1; in findStereoCorrespondenceBM_SSE2() 342 const uchar* rptr0 = right.ptr() + rofs; in findStereoCorrespondenceBM_SSE2() 370 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep; in findStereoCorrespondenceBM_SSE2() 411 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep; in findStereoCorrespondenceBM_SSE2() 580 int rofs = -MIN(ndisp - 1 + mindisp, 0); in findStereoCorrespondenceBM() local 582 int width1 = width - rofs - ndisp + 1; in findStereoCorrespondenceBM() 600 const uchar* rptr0 = right.ptr() + rofs; in findStereoCorrespondenceBM() 627 rptr = rptr0 + std::min(std::max(x, -rofs), width-rofs-1) - dy0*sstep; in findStereoCorrespondenceBM() 677 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep; in findStereoCorrespondenceBM() [all …]
|