HomeSort by relevance Sort by last modified time
    Searched refs:iys (Results 1 - 4 of 4) sorted by null

  /external/opencv3/modules/imgproc/src/
samplers.cpp 297 int iys = cvFloor( ys ); local
298 const uchar *ptr = src + src_step*iys;
299 float a = (float)(xs - ixs), b = (float)(ys - iys), a1 = 1.f - a, b1 = 1.f - b;
333 int ixs = cvFloor( xs ), iys = cvFloor( ys ); local
334 float a = (float)(xs - ixs), b = (float)(ys - iys), a1 = 1.f - a, b1 = 1.f - b;
339 if( (unsigned)iys < (unsigned)(src_size.height-1) )
340 ptr0 = src + src_step*iys, ptr1 = ptr0 + src_step;
342 ptr0 = ptr1 = src + (iys < 0 ? 0 : src_size.height-1)*src_step;
  /external/opencv/cv/src/
cvsamplers.cpp 631 int iys = cvFloor( ys ); \
632 const srctype *ptr = src + src_step*iys + ixs; \
633 double a = xs - ixs, b = ys - iys, a1 = 1.f - a; \
    [all...]
cvimgwarp.cpp     [all...]
  /external/opencv3/modules/imgproc/test/
test_imgwarp.cpp 383 int iys = cvFloor(ys); local
386 (unsigned)(iys - delta - 1) >= (unsigned)srows1 )
391 (unsigned)(iys - delta) >= (unsigned)srows )
396 ys -= iys;
402 const uchar* sptr = sptr0 + iys*step + ixs*cn;
419 const ushort* sptr = (const ushort*)sptr0 + iys*step + ixs*cn;
436 const float* sptr = (const float*)sptr0 + iys*step + ixs*cn;
    [all...]

Completed in 471 milliseconds