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

  /external/opencv/cv/src/
cvcanny.cpp 165 int* _mag = mag_buf[(i > 0) + 1] + 1; local
166 float* _magf = (float*)_mag;
176 _mag[-1] = _mag[size.width] = 0;
180 _mag[j] = abs(_dx[j]) + abs(_dy[j]);
202 memset( _mag-1, 0, (size.width + 2)*sizeof(int) );
212 _mag = mag_buf[1] + 1; // take the central row
238 int m = _mag[j];
251 if( m > _mag[j-1] && m >= _mag[j+1]
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
polar_cart.cu 119 void cv::cuda::cartToPolar(InputArray _x, InputArray _y, OutputArray _mag, OutputArray _angle, bool angleInDegrees, Stream& stream)
127 GpuMat mag = getOutputMat(_mag, x.size(), CV_32FC1, stream);
154 syncOutput(mag, _mag, stream);
180 void cv::cuda::polarToCart(InputArray _mag, InputArray _angle, OutputArray _x, OutputArray _y, bool angleInDegrees, Stream& _stream)
182 GpuMat mag = getInputMat(_mag, _stream);
  /external/opencv3/modules/imgproc/src/
canny.cpp 448 int* _mag = mag_buf[1] + 1; // take the central row local
474 int m = _mag[j];
487 if (m > _mag[j-1] && m >= _mag[j+1]) canny_push = true;
494 if (m > _mag[j+magstep2] && m >= _mag[j+magstep1]) canny_push = true;
499 if (m > _mag[j+magstep2-s] && m > _mag[j+magstep1+s]) canny_push = true;
526 _mag = mag_buf[0];
529 mag_buf[2] = _mag;
855 int* _mag = mag_buf[1] + 1; \/\/ take the central row local
    [all...]
  /external/opencv3/modules/core/src/
mathfuncs.cpp 585 static bool ocl_polarToCart( InputArray _mag, InputArray _angle,
604 UMat mag = _mag.getUMat(), angle = _angle.getUMat();
    [all...]
  /external/opencv3/modules/objdetect/src/
hog.cpp 421 __m128 _mag = _mm_loadu_ps(dbuf + x + (width << 1)); local
430 __m128 ft0 = _mm_mul_ps(_mag, _mm_sub_ps(fone, _angle));
431 __m128 ft1 = _mm_mul_ps(_mag, _angle);
    [all...]

Completed in 116 milliseconds