HomeSort by relevance Sort by last modified time
    Searched defs:_dy (Results 1 - 5 of 5) sorted by null

  /external/opencv/cv/src/
cvcanny.cpp 168 const short* _dy = (short*)(dy->data.ptr + dy->step*i); local
180 _mag[j] = abs(_dx[j]) + abs(_dy[j]);
187 x = _dx[j]; y = _dy[j];
196 x = _dx[j]; y = _dy[j];
214 _dy = (short*)(dy->data.ptr + dy->step*(i-1));
236 y = _dy[j];
cvsnakes.cpp 109 CvMat _dy = cvMat( TILE_SIZE, TILE_SIZE, CV_16SC1, dy ); local
309 pY.process( &_src1, &_dy );
cvhough.cpp 1017 float _dx, _dy; local
1019 _dx = cx - pt.x; _dy = cy - pt.y;
1020 ddata[j] = _dx*_dx + _dy*_dy;
    [all...]
  /external/opencv3/modules/imgproc/src/
canny.cpp 82 Mat _dy(_src.rows, _src.cols, CV_16S);
84 _dy.ptr<short>(), (int)_dy.step, roi,
89 _dy.ptr<short>(), (int)_dy.step,
352 short* _dy = dy.ptr<short>(i - boundaries.start + 1); local
364 __m128i v_dy = _mm_loadu_si128((const __m128i *)(_dy + j));
378 int16x8_t v_dx = vld1q_s16(_dx + j), v_dy = vld1q_s16(_dy + j);
386 _norm[j] = std::abs(int(_dx[j])) + std::abs(int(_dy[j]));
397 __m128i v_dy = _mm_loadu_si128((const __m128i *)(_dy + j))
756 short* _dy = dy.ptr<short>(i); local
    [all...]
hough.cpp 1163 float _dx, _dy, _r2; local
    [all...]

Completed in 521 milliseconds