Home
last modified time | relevance | path

Searched refs:fastAtan2 (Results 1 – 12 of 12) sorted by relevance

/external/opencv3/modules/hal/include/opencv2/
Dhal.hpp88 void fastAtan2(const float* y, const float* x, float* dst, int n, bool angleInDegrees);
/external/opencv3/modules/features2d/src/opencl/
Dorb.cl61 inline float fastAtan2( float y, float x )
123 responses[idx] = fastAtan2((float)m_01, (float)m_10);
/external/opencv3/modules/imgproc/src/
Dgeneralized_hough.cpp402 const float theta = fastAtan2(dyRow[x], dxRow[x]); in processTempl()
445 const float theta = fastAtan2(dyRow[x], dxRow[x]); in calcHist()
713 f.alpha12 = clampAngle(fastAtan2((float)d.y, (float)d.x) - p1.theta); in buildFeatureList()
753 p.theta = fastAtan2(dyRow[x], dxRow[x]); in getContourPoints()
Dlsd.cpp579 … angles_data[addr] = fastAtan2(float(gx), float(-gy)) * DEG_TO_RADS; // gradient angle computation in ll_angle()
681 reg_angle = fastAtan2(sumdy, sumdx) * DEG_TO_RADS; in region_grow()
774 double(fastAtan2(float(lambda - Ixx), float(Ixy))): in get_theta()
775 double(fastAtan2(float(Ixy), float(lambda - Iyy))); // in degs in get_theta()
/external/opencv3/modules/core/src/
Dmathfuncs.cpp102 float fastAtan2( float y, float x ) in fastAtan2() function
242 hal::fastAtan2( y, x, angle, len, angleInDegrees ); in phase()
272 hal::fastAtan2( buf[1], buf[0], buf[0], len, angleInDegrees ); in phase()
377 hal::fastAtan2( y, x, angle, len, angleInDegrees ); in cartToPolar()
409 hal::fastAtan2( buf[1], buf[0], buf[0], len, angleInDegrees ); in cartToPolar()
1801 CV_IMPL float cvFastArctan(float y, float x) { return cv::fastAtan2(y, x); } in cvFastArctan()
/external/opencv3/modules/core/include/opencv2/core/
Dbase.hpp574 CV_EXPORTS_W float fastAtan2(float y, float x);
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java434 float res = Core.fastAtan2(50, 50); in testFastAtan2()
438 float res2 = Core.fastAtan2(80, 20); in testFastAtan2()
/external/opencv3/modules/features2d/src/
Dorb.cpp207 pts[ptidx].angle = fastAtan2((float)m_01, (float)m_10); in ICAngles()
/external/opencv3/modules/hal/src/
Dmathfuncs.cpp65 void fastAtan2(const float *Y, const float *X, float *angle, int len, bool angleInDegrees ) in fastAtan2() function
/external/opencv3/modules/java/src/
Dcore+Core.java831 public static float fastAtan2(float y, float x) in fastAtan2() method in Core
Dcore.cpp1381 float _retval_ = cv::fastAtan2( (float)y, (float)x ); in Java_org_opencv_core_Core_fastAtan2_10()
/external/opencv3/modules/features2d/src/kaze/
DAKAZEFeatures.cpp815 hal::fastAtan2(resY, resX, Ang, ang_size, false); in Compute_Main_Orientation()