Home
last modified time | relevance | path

Searched refs:tstep (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/imgproc/test/
Dtest_distancetransform.cpp163 int tstep, count; in cvTsDistTransform() local
193 tstep = temp->step / sizeof(float); in cvTsDistTransform()
199 ofs[1] = -tstep-1; delta[1] = mask[1]; in cvTsDistTransform()
200 ofs[2] = -tstep; delta[2] = mask[0]; in cvTsDistTransform()
201 ofs[3] = -tstep+1; delta[3] = mask[1]; in cvTsDistTransform()
207 ofs[1] = -tstep-2; delta[1] = mask[2]; in cvTsDistTransform()
208 ofs[2] = -tstep-1; delta[2] = mask[1]; in cvTsDistTransform()
209 ofs[3] = -tstep; delta[3] = mask[0]; in cvTsDistTransform()
210 ofs[4] = -tstep+1; delta[4] = mask[1]; in cvTsDistTransform()
211 ofs[5] = -tstep+2; delta[5] = mask[2]; in cvTsDistTransform()
[all …]
Dtest_filter.cpp1677 int tstep = tilted ? (int)(tilted->step/sizeof(tdata[0])) : 0; in test_integral() local
1692 tdata += tstep; in test_integral()
1708 ts += tdata[-tstep+1]; in test_integral()
1711 ts += tdata[x-tstep-1]; in test_integral()
1716 ts += tdata[x-tstep+1] - tdata[x-tstep*2]; in test_integral()
/external/opencv/cv/src/
Dcvlkpyramid.cpp137 int tstep = cvAlign(levelSize.width,ALIGN) * elem_size; in icvInitPyramidalAlgorithm() local
138 pyrBytes += tstep * levelSize.height; in icvInitPyramidalAlgorithm()
/external/opencv3/modules/imgproc/src/
Dsumpixels.cpp335 uchar* sqsum, size_t sqsumstep, uchar* tilted, size_t tstep,