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

  /frameworks/base/media/java/android/media/audiofx/
Virtualizer.java 69 * Parameter ID to query the virtual speaker angles for a channel mask / device configuration.
172 * Checks if a configuration is supported, and query the virtual speaker angles.
175 * @param angles if non-null: array in which the angles will be written. If null, no angles
183 private boolean getAnglesInt(int inputChannelMask, int deviceType, int[] angles)
193 if ((angles != null) && (angles.length < (nbChannels * 3))) {
194 Log.e(TAG, "Size of array for angles cannot accomodate number of channels in mask ("
197 "Virtualizer: array for channel / angle pairs is too small: is " + angles.lengt
    [all...]
  /packages/apps/DevCamera/src/com/android/devcamera/
PreviewOverlay.java 92 public void setGyroAngles(float[] angles) {
106 mAngles[1] = -angles[0];
107 mAngles[0] = angles[1];
110 mAngles[0] = angles[0];
111 mAngles[1] = angles[1];
114 mAngles[1] = -angles[0];
115 mAngles[0] = angles[1];
118 mAngles[0] = angles[0];
119 mAngles[1] = angles[1];
  /external/opencv3/3rdparty/openexr/Imath/
ImathEuler.h 59 // 1) Are the angles measured relative to a set of fixed axis
67 // must order the angles according to their priorities. So, the
75 // Eulerf angles(z_rot, y_rot, x_rot, Eulerf::ZYX);
77 // Eulerf angles( V3f(z_rot,y_rot,z_rot), Eulerf::ZYX );
86 // Eulerf angles(y_rot, x_rot, z_rot, Eulerf::YXZ);
88 // Eulerf angles( V3f(y_rot,x_rot,z_rot), Eulerf::YXZ );
90 // Notice how the order you put the angles into the three slots
95 // angles are ordered in the same way, i.e.:
97 // V3f v = angles;
100 // If you just want the x, y, and z angles stored in a vector i
633 Vec3<T> angles; local
676 Vec3<T> angles; local
716 Vec3<T> angles; local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
cv_util.py 23 # If the difference between the angles is more than pi/2 - tolerance, the
57 angles = np.arctan2(lines[:, 1] - lines[:, 3], lines[:, 0] - lines[:, 2])
58 xoffsets = half_length * np.cos(angles)
59 yoffsets = half_length * np.sin(angles)
screen_finder.py 60 _anglesp5, _anglesm5: The angles for each point we look at in the grid
450 # The angles for each point we look at in the grid when computing
456 angles = np.arctan2(vectors[:, 1], vectors[:, 0]) + np.pi
457 self._anglesp5 = angles + self.SMALL_ANGLE
458 self._anglesm5 = angles - self.SMALL_ANGLE
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VirtualizerTest.java 350 int[] angles = new int[3*6]; local
353 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
357 VIRTUALIZATION_MODES[m], angles);
361 //check if the number of angles matched the expected number of channels for
365 int speakerIdentification = angles[k*3];
469 int[] angles = new int[3*6]; local
475 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
479 VIRTUALIZATION_MODES[m], angles);
490 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
494 VIRTUALIZATION_MODES[m], angles);
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
euler_angles.hpp 34 /// @brief Build matrices from Euler angles.
72 /// Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y).
79 /// Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X).
86 /// Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z).
93 /// Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X).
100 /// Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z).
107 /// Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y).
114 /// Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z).
122 /// Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z).
140 /// Creates a 3D 3 * 3 rotation matrix from euler angles (Y * X * Z).
    [all...]
  /external/opencv3/modules/python/test/
transformations.py 39 Euler angles, and quaternions. Also includes an Arcball control object and
73 Angles are in radians unless specified otherwise.
79 A triple of Euler angles can be applied/interpreted in 24 ways, which can
110 (7) Representing attitude: Euler angles, unit quaternions, and rotation
156 >>> scale, shear, angles, trans, persp = decompose_matrix(M)
163 >>> is_same_transform(R, euler_matrix(axes='sxyz', *angles))
165 >>> M1 = compose_matrix(scale, shear, angles, trans, persp)
711 angles : list of Euler angles about static x, y, z axes
718 >>> scale, shear, angles, trans, persp = decompose_matrix(T0
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/util/
IconNormalizer.java 189 float[] angles = new float[total - 1]; local
213 if ((currentAngle - angles[start]) * direction >= 0) {
224 angles[j] = lastAngle;
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 447 float angles[2]; local
480 angles[i] = acos(cos_a)/M_PI;
483 if (angles[0] + angles[1] > 1.) {
487 angles[0] = 1. - angles[0];
488 angles[1] = 1. - angles[1];
502 float kappa = 2.*KAPPA * sign * offset * angles[i];
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 18 set angles radians
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorManagerStaticTest.java 133 // avoid directly checking the rotation angles to avoid corner cases
191 // Avoid directly comparing rotation angles. Instead, compare the rotation matrix.
702 private static float [] mat9VRot(float [] angles) {
703 assertTrue(angles.length == 3);
705 float [] R = mat9Rot(SensorManager.AXIS_Z, -angles[0]);
707 R = mat9Mul(R, mat9Rot(SensorManager.AXIS_X, -angles[1]));
709 R = mat9Mul(R, mat9Rot(SensorManager.AXIS_Y, angles[2]));
  /external/eigen/demos/opengl/
quaternion_demo.cpp 59 static const float angles [10] = { local
83 Vector3f newC = c + ( (AngleAxisf(angles[j*2+1], ax0)
84 * AngleAxisf(angles[j*2+0] * (l==1 ? 0.35 : 0.5), ax1)) * ax0)
188 // Euler angles slerp
610 but = new QRadioButton("euler angles");
613 but->setToolTip("use Euler angles to interpolate orientations");
  /external/opencv3/modules/imgproc/src/
lsd.cpp 235 Mat_<double> angles; // in rads member in class:cv::LineSegmentDetectorImpl
305 * Finds the angles and the gradients of the image. Generates a list of pseudo ordered points.
541 angles = Mat_<double>(scaled_image.size());
544 angles_data = angles.ptr<double>(0);
552 angles.row(img_height - 1).setTo(NOTDEF);
553 angles.col(img_width - 1).setTo(NOTDEF);
558 angles.isContinuous()); // Accessing image data linearly
    [all...]
  /external/opencv3/modules/calib3d/src/
circlesgrid.cpp 193 //find angles (cosines) of vertices in convex hull
194 std::vector<float> angles; local
200 angles.push_back(angle);
203 //sort angles by cosine
204 //corners are the most sharp angles (6)
205 Mat anglesMat = Mat(angles);
240 //compute angles between all sides
    [all...]
  /external/skia/src/pathops/
SkPathOpsDebug.cpp     [all...]
  /external/chromium-trace/catapult/third_party/flot/
excanvas.js 1033 // Very small angles produce an unexpected result because they are
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 1727 milliseconds