Searched refs:dstep (Results 1 – 7 of 7) sorted by relevance
/external/opencv/cv/src/ |
D | cvsegmentation.cpp | 406 int dstep; in cvPyrMeanShiftFiltering() local 414 dstep = dst_pyramid[level+1]->step; in cvPyrMeanShiftFiltering() 415 dptr = dst_pyramid[level+1]->data.ptr + dstep + cn; in cvPyrMeanShiftFiltering() 422 … for( i = 1; i < size1.height-1; i++, dptr += dstep - (size1.width-2)*3, mask += mstep*2 ) in cvPyrMeanShiftFiltering() 427 mask[j*2 - 1] = cdiff(-3) || cdiff(3) || cdiff(-dstep-3) || cdiff(-dstep) || in cvPyrMeanShiftFiltering() 428 cdiff(-dstep+3) || cdiff(dstep-3) || cdiff(dstep) || cdiff(dstep+3); in cvPyrMeanShiftFiltering() 437 dstep = dst_pyramid[level]->step; in cvPyrMeanShiftFiltering() 440 dptr += dstep - size.width*3, in cvPyrMeanShiftFiltering()
|
D | cvstereobm.cpp | 203 int dstep = disp->step/sizeof(dptr[0]); in icvFindStereoCorrespondenceBM_SSE2() local 244 dptr[y*dstep + x] = FILTERED; in icvFindStereoCorrespondenceBM_SSE2() 246 dptr[y*dstep + x] = FILTERED; in icvFindStereoCorrespondenceBM_SSE2() 346 dptr[y*dstep] = FILTERED; in icvFindStereoCorrespondenceBM_SSE2() 368 dptr[y*dstep] = FILTERED; in icvFindStereoCorrespondenceBM_SSE2() 377 …dptr[y*dstep] = (short)(((ndisp - mind - 1 + mindisp)*256 + (d != 0 ? (p-n)*128/d : 0) + 15) >> 4); in icvFindStereoCorrespondenceBM_SSE2() 410 int dstep = disp->step/sizeof(dptr[0]); in icvFindStereoCorrespondenceBM() local 450 dptr[y*dstep + x] = FILTERED; in icvFindStereoCorrespondenceBM() 452 dptr[y*dstep + x] = FILTERED; in icvFindStereoCorrespondenceBM() 517 dptr[y*dstep] = FILTERED; in icvFindStereoCorrespondenceBM() [all …]
|
D | cvstereogc.cpp | 539 int dstep = (int)(state->dispLeft->step/sizeof(short)); in icvComputeEnergy() local 547 for( y = 0; y < rows; y++, left += step, right += step, dleft += dstep, dright += dstep ) in icvComputeEnergy() 571 d1 = dleft[x+dstep]; in icvComputeEnergy() 586 d1 = dright[x+dstep]; in icvComputeEnergy() 681 int dstep = (int)(state->dispLeft->step/sizeof(short)); in icvAlphaExpand() local 701 const short* dleft = dleft0 + dstep*y; in icvAlphaExpand() 702 const short* dright = dright0 + dstep*y; in icvAlphaExpand() 714 const short* disp = (k == 0 ? dleft0 : dright0) + y1*dstep; in icvAlphaExpand() 787 d1 = disp[x+dstep]; in icvAlphaExpand() 820 short* dleft = dleft0 + dstep*y; in icvAlphaExpand() [all …]
|
D | cvundistort.cpp | 387 int sstep, dstep; in cvUndistortPoints() local 431 dstep = _dst->rows == 1 ? 1 : _dst->step/CV_ELEM_SIZE(dtype); in cvUndistortPoints() 478 dstf[i*dstep].x = (float)x; in cvUndistortPoints() 479 dstf[i*dstep].y = (float)y; in cvUndistortPoints() 483 dstd[i*dstep].x = x; in cvUndistortPoints() 484 dstd[i*dstep].y = y; in cvUndistortPoints()
|
D | cvdistransform.cpp | 454 int sstep, dstep; in icvTrueDistTrans() local 479 dstep = dst->step / sizeof(float); in icvTrueDistTrans() 513 for( j = 0; j < m; j++, dptr += dstep ) in icvTrueDistTrans()
|
/external/opencv/cxcore/src/ |
D | cxutils.cpp | 1064 int sstep = src->step, dstep = dst ? dst->step : 0; in cvSort() local 1130 dptr += dstep*(src->rows - 1); in cvSort() 1131 dstep = -dstep; in cvSort() 1137 dstep /= elemSize; in cvSort() 1146 icvShuffle1D( tsrc, tidx, dptr + i*elemSize, dstep, len, elemSize ); in cvSort() 1152 icvCopy1D( tsrc, 1, dptr + i*elemSize, dstep, len, elemSize ); in cvSort() 1170 uchar* dptr = dst->data.ptr + i*dstep; in cvSort() 1182 uchar* dptr = dst ? dst->data.ptr + dstep*i : 0; in cvSort()
|
/external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/ |
D | Bump.glsllib | 24 d -= dstep;
|