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

  /external/opencv3/modules/hal/include/opencv2/
hal.hpp 88 void fastAtan2(const float* y, const float* x, float* dst, int n, bool angleInDegrees);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
MathUtils.java 269 return fastAtan2(y, x);
275 public static final float fastAtan2(float y, float x) {
  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 402 const float theta = fastAtan2(dyRow[x], dxRow[x]);
445 const float theta = fastAtan2(dyRow[x], dxRow[x]);
713 f.alpha12 = clampAngle(fastAtan2((float)d.y, (float)d.x) - p1.theta);
753 p.theta = fastAtan2(dyRow[x], dxRow[x]);
lsd.cpp 579 angles_data[addr] = fastAtan2(float(gx), float(-gy)) * DEG_TO_RADS; // gradient angle computation
681 reg_angle = fastAtan2(sumdy, sumdx) * DEG_TO_RADS;
774 double(fastAtan2(float(lambda - Ixx), float(Ixy))):
775 double(fastAtan2(float(Ixy), float(lambda - Iyy))); // in degs
    [all...]
  /external/opencv3/modules/core/src/
mathfuncs.cpp 102 float fastAtan2( float y, float x )
242 hal::fastAtan2( y, x, angle, len, angleInDegrees );
272 hal::fastAtan2( buf[1], buf[0], buf[0], len, angleInDegrees );
377 hal::fastAtan2( y, x, angle, len, angleInDegrees );
409 hal::fastAtan2( buf[1], buf[0], buf[0], len, angleInDegrees );
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
base.hpp 569 The function fastAtan2 calculates the full-range angle of an input 2D vector. The angle is measured
574 CV_EXPORTS_W float fastAtan2(float y, float x);
  /external/opencv3/modules/core/misc/java/test/
CoreTest.java 434 float res = Core.fastAtan2(50, 50);
438 float res2 = Core.fastAtan2(80, 20);
    [all...]
  /external/opencv3/modules/features2d/src/
orb.cpp 207 pts[ptidx].angle = fastAtan2((float)m_01, (float)m_10);
    [all...]
  /external/opencv3/modules/hal/src/
mathfuncs.cpp 65 void fastAtan2(const float *Y, const float *X, float *angle, int len, bool angleInDegrees )
    [all...]
  /external/opencv3/modules/java/src/
core+Core.java 827 // C++: float fastAtan2(float y, float x)
830 //javadoc: fastAtan2(y, x)
831 public static float fastAtan2(float y, float x)
    [all...]
core.cpp     [all...]
  /external/opencv3/modules/features2d/src/kaze/
AKAZEFeatures.cpp 815 hal::fastAtan2(resY, resX, Ang, ang_size, false);
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 872 milliseconds