HomeSort by relevance Sort by last modified time
    Searched full:left_x (Results 1 - 9 of 9) sorted by null

  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
pyr_down.hpp 91 const int left_x = x - 2; local
95 sum = 0.0625f * src(src_y - 2, left_x);
96 sum = sum + 0.25f * src(src_y - 1, left_x);
97 sum = sum + 0.375f * src(src_y , left_x);
98 sum = sum + 0.25f * src(src_y + 1, left_x);
99 sum = sum + 0.0625f * src(src_y + 2, left_x);
135 const int left_x = x - 2; local
139 sum = 0.0625f * src(Brd::idx_low(src_y - 2, src_rows) , Brd::idx_low(Brd::idx_high(left_x, src_cols), src_cols));
140 sum = sum + 0.25f * src(Brd::idx_low(src_y - 1, src_rows) , Brd::idx_low(Brd::idx_high(left_x, src_cols), src_cols));
141 sum = sum + 0.375f * src(src_y , Brd::idx_low(Brd::idx_high(left_x, src_cols), src_cols))
    [all...]
  /external/opencv3/modules/cudawarping/src/cuda/
pyr_down.cu 82 const int left_x = x - 2;
86 sum = 0.0625f * src(src_y - 2, left_x);
87 sum = sum + 0.25f * src(src_y - 1, left_x);
88 sum = sum + 0.375f * src(src_y , left_x);
89 sum = sum + 0.25f * src(src_y + 1, left_x);
90 sum = sum + 0.0625f * src(src_y + 2, left_x);
126 const int left_x = x - 2;
130 sum = 0.0625f * src(b.idx_row_low (src_y - 2), b.idx_col(left_x));
131 sum = sum + 0.25f * src(b.idx_row_low (src_y - 1), b.idx_col(left_x));
132 sum = sum + 0.375f * src(src_y , b.idx_col(left_x));
    [all...]
  /external/opencv/cv/src/
cvrotcalipers.cpp 112 float left_x, right_x, top_y, bottom_y; local
115 left_x = right_x = pt0.x;
122 if( pt0.x < left_x )
123 left_x = pt0.x, left = i;
  /external/opencv3/modules/imgproc/src/
rotcalipers.cpp 112 float left_x, right_x, top_y, bottom_y; local
115 left_x = right_x = pt0.x;
122 if( pt0.x < left_x )
123 left_x = pt0.x, left = i;
lsd.cpp 1067 double left_x = min_y->p.x, right_x = min_y->p.x; local
    [all...]
  /system/core/libpixelflinger/
trap.cpp 734 int left_x = left->x; local
745 const int32_t xl = max(left_x >> TRI_ITERATORS_BITS, xmin);
747 left_x += left_xi;
    [all...]
  /external/opencv3/modules/cudastereo/src/cuda/
stereocsbp.cu 387 const uchar* left_x = cleft + yi * cimg_step + xi * channels;
390 val += data_weight * pixeldiff<channels>(left_x, right_x, max_data_term);
    [all...]
  /external/opencv3/modules/features2d/src/kaze/
AKAZEFeatures.cpp 262 int sigma_size_ = 0, left_x = 0, right_x = 0, up_y = 0, down_y = 0; local
333 left_x = fRound(point.pt.x - smax*sigma_size_) - 1;
338 if (left_x < 0 || right_x >= evolution_[i].Ldet.cols ||
    [all...]
KAZEFeatures.cpp 316 int left_x = 0, right_x = 0, up_y = 0, down_y = 0; local
366 left_x = fRound(kpts_par_[i][j].pt.x - smax*kpts_par_[i][j].size);
371 if (left_x < 0 || right_x >= evolution_[level].Ldet.cols ||
    [all...]

Completed in 814 milliseconds