HomeSort by relevance Sort by last modified time
    Searched refs:sstep (Results 1 - 25 of 34) sorted by null

1 2

  /external/opencv/ml/src/
_ml.h 91 #define ICV_RAWDATA( mat, flags, rdata, sstep, cstep, m, n ) \
95 (sstep) = (mat).step; \
103 (sstep) = CV_ELEM_SIZE( (mat).type ); \
113 uchar* data; int sstep, cstep; - trainData->data
125 int sstep, cstep; \
143 sstep = cstep = clstep = ncl = tmstep = ntm = msstep = mcstep = mm = mn = 0; \
153 ICV_RAWDATA( *(param), (flags), data, sstep, cstep, m, n ); \
  /external/opencv/cv/src/
cvstereobm.cpp 202 int sstep = left->step; local
224 lptr = lptr0 + MIN(MAX(x, -lofs), width-lofs-1) - dy0*sstep;
225 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep;
227 for( y = -dy0; y < height + dy1; y++, hsad += ndisp, cbuf += ndisp, lptr += sstep, rptr += sstep )
256 lptr_sub = lptr0 + MIN(MAX(x0, -lofs), width-1-lofs) - dy0*sstep;
257 lptr = lptr0 + MIN(MAX(x1, -lofs), width-1-lofs) - dy0*sstep;
258 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep;
261 hsad += ndisp, lptr += sstep, lptr_sub += sstep, rptr += sstep
409 int sstep = left->step; local
    [all...]
cvsegmentation.cpp 402 int sstep = src->step; local
439 for( i = 0; i < size.height; i++, sptr += sstep - size.width*3,
468 ptr = sptr + (miny - i)*sstep + (minx - j)*3;
470 for( y = miny; y <= maxy; y++, ptr += sstep - (maxx-minx+1)*3 )
cvundistort.cpp 387 int sstep, dstep; local
430 sstep = _src->rows == 1 ? 1 : _src->step/CV_ELEM_SIZE(stype);
447 x = srcf[i*sstep].x;
448 y = srcf[i*sstep].y;
452 x = srcd[i*sstep].x;
453 y = srcd[i*sstep].y;
cvimgwarp.cpp 1801 int sstep = src->step; local
    [all...]
cvdistransform.cpp 454 int sstep, dstep; local
478 sstep = src->step;
501 const uchar* sptr = src->data.ptr + i + (m-1)*sstep;
506 for( j = m-1; j >= 0; j--, sptr -= sstep )
cvstereogc.cpp 450 int sstep = src->step; local
454 const uchar* sptr = src->data.ptr + sstep*y;
455 const uchar* sptr_prev = y > 0 ? sptr - sstep : sptr;
456 const uchar* sptr_next = y < rows-1 ? sptr + sstep : sptr;
  /external/opencv3/apps/traincascade/
old_ml_precomp.hpp 87 #define ICV_RAWDATA( mat, flags, rdata, sstep, cstep, m, n ) \
91 (sstep) = (mat).step; \
99 (sstep) = CV_ELEM_SIZE( (mat).type ); \
109 uchar* data; int sstep, cstep; - trainData->data
121 int sstep, cstep; \
139 sstep = cstep = clstep = ncl = tmstep = ntm = msstep = mcstep = mm = mn = 0; \
149 ICV_RAWDATA( *(param), (flags), data, sstep, cstep, m, n ); \
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
erase_iter_iter.pass.cpp 69 int sstep = std::max((N - p) / std::max(std::min(N - p, 10), 1), 1); local
70 for (int s = 0; s <= N - p; s += sstep)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/
erase_iter_iter.pass.cpp 67 int sstep = std::max((N - p) / std::max(std::min(N - p, 10), 1), 1); local
68 for (int s = 0; s <= N - p; s += sstep)
  /external/opencv3/modules/core/src/
copy.cpp 56 copyMask_(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, size_t dstep, Size size)
58 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep )
83 copyMask_<uchar>(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, size_t dstep, Size size)
88 if (ippiCopy_8u_C1MR(_src, (int)sstep, _dst, (int)dstep, ippiSize(size), mask, (int)mstep) >= 0)
97 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep )
133 copyMask_<ushort>(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, size_t dstep, Size size)
138 if (ippiCopy_16u_C1MR((const Ipp16u *)_src, (int)sstep, (Ipp16u *)_dst, (int)dstep, ippiSize(size), mask, (int)mstep) >= 0)
147 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep )
186 copyMaskGeneric(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, size_t dstep, Size size, void* _esz)
189 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep
    [all...]
convert.cpp     [all...]
matrix.cpp     [all...]
lapack.cpp 239 static bool Jacobi( float* S, size_t sstep, float* e, float* E, size_t estep, int n, uchar* buf )
241 return JacobiImpl_(S, sstep, e, E, estep, n, buf);
244 static bool Jacobi( double* S, size_t sstep, double* e, double* E, size_t estep, int n, uchar* buf )
246 return JacobiImpl_(S, sstep, e, E, estep, n, buf);
    [all...]
  /external/opencv3/modules/imgproc/src/
demosaicing.cpp 1484 int sstep = int(src.step \/ src.elemSize1()), dstep = int(dst.step \/ dst.elemSize1()); local
    [all...]
imgwarp.cpp     [all...]
segmentation.cpp 405 int sstep = (int)src.step; local
442 for( i = 0; i < size.height; i++, sptr += sstep - size.width*3,
471 ptr = sptr + (miny - i)*sstep + (minx - j)*3;
473 for( y = miny; y <= maxy; y++, ptr += sstep - (maxx-minx+1)*3 )
undistort.cpp 277 int sstep, dstep; local
331 sstep = _src->rows == 1 ? 1 : _src->step/CV_ELEM_SIZE(stype);
348 x = srcf[i*sstep].x;
349 y = srcf[i*sstep].y;
353 x = srcd[i*sstep].x;
354 y = srcd[i*sstep].y;
smooth.cpp     [all...]
clahe.cpp 177 const size_t sstep = src_.step / sizeof(T); local
178 for (const T* ptr = tile.ptr<T>(0); height--; ptr += sstep)
distransform.cpp 459 size_t sstep = src->step, dstep = dst->step/sizeof(float); local
469 for( j = m-1; j >= 0; j--, sptr -= sstep )
  /external/opencv3/modules/calib3d/src/
stereobm.cpp 345 int sstep = (int)left.step;
369 lptr = lptr0 + MIN(MAX(x, -lofs), width-lofs-1) - dy0*sstep;
370 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep;
372 for( y = -dy0; y < height + dy1; y++, hsad += ndisp, cbuf += ndisp, lptr += sstep, rptr += sstep )
409 lptr_sub = lptr0 + MIN(MAX(x0, -lofs), width-1-lofs) - dy0*sstep;
410 lptr = lptr0 + MIN(MAX(x1, -lofs), width-1-lofs) - dy0*sstep;
411 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep;
414 hsad += ndisp, lptr += sstep, lptr_sub += sstep, rptr += sstep
    [all...]
  /external/opencv3/modules/ml/src/
data.cpp 837 size_t sstep = layout == ROW_SAMPLE ? sstep0 : 1;
844 std::swap(sstep, vstep);
851 const float* src = src0 + (sptr ? sptr[i] : i)*sstep;
872 size_t sstep = layout == ROW_SAMPLE ? step : 1;
885 values[i] = src[j*sstep];
948 size_t sstep = layout == ROW_SAMPLE ? step : 1;
951 const float* src = samples.ptr<float>() + sidx*sstep;
    [all...]
  /external/opencv/cxcore/src/
cxutils.cpp 1064 int sstep = src->step, dstep = dst ? dst->step : 0; local
    [all...]
  /external/opencv3/modules/objdetect/src/
cascadedetect.cpp 710 int sstep = sbufSize.width; local
711 CV_SUM_OFS( nofs[0], nofs[1], nofs[2], nofs[3], 0, normrect, sstep );
718 optfeaturesPtr[fi].setOffsets( ff[fi], sstep, tofs );
722 optfeatures_lbuf->at(fi).setOffsets(ff[fi], lbufSize.width > 0 ? lbufSize.width : sstep, tofs);
866 int sstep = sbufSize.width; local
873 optfeaturesPtr[fi].setOffsets( ff[fi], sstep );
    [all...]

Completed in 758 milliseconds

1 2