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

  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Utils.cpp 189 cv::Mat rot2euler(const cv::Mat & rotationMatrix)
193 double m00 = rotationMatrix.at<double>(0,0);
194 double m02 = rotationMatrix.at<double>(0,2);
195 double m10 = rotationMatrix.at<double>(1,0);
196 double m11 = rotationMatrix.at<double>(1,1);
197 double m12 = rotationMatrix.at<double>(1,2);
198 double m20 = rotationMatrix.at<double>(2,0);
199 double m22 = rotationMatrix.at<double>(2,2);
231 cv::Mat rotationMatrix(3,3,CV_64F);
257 rotationMatrix.at<double>(0,0) = m00
    [all...]
Utils.h 55 cv::Mat rot2euler(const cv::Mat & rotationMatrix);
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
RendererCommon.java 163 final float[] rotationMatrix = new float[16];
164 Matrix.setRotateM(rotationMatrix, 0, rotationDegree, 0, 0, 1);
165 adjustOrigin(rotationMatrix);
166 return multiplyMatrices(textureMatrix, rotationMatrix);
  /external/deqp/framework/common/
tcuMatrixUtil.hpp 37 Matrix<float, 2, 2> rotationMatrix (float radians);
57 inline Matrix<float, 2, 2> rotationMatrix (float radians)
  /packages/apps/Camera2/src/com/android/camera/ui/
ZoomView.java 83 Matrix rotationMatrix = new Matrix();
84 rotationMatrix.setRotate(mOrientation, 0, 0);
85 rotationMatrix.mapRect(fullResRect);
88 rotationMatrix.postTranslate(-fullResRect.left, -fullResRect.top);
89 rotationMatrix.mapRect(fullResRect, new RectF(0, 0, imageSize.x - 1,
108 rotationMatrix.invert(invertRotation);
  /external/opencv3/modules/stitching/test/ocl/
test_warpers.cpp 67 float rotationMatrix[9] = {
72 Mat(3, 3, CV_32FC1, rotationMatrix).copyTo(R);
  /packages/apps/Camera2/src/com/android/camera/captureintent/state/
StateReadyForCapture.java 369 Matrix rotationMatrix = new Matrix();
370 rotationMatrix.setRotate(rotationDegree, 0.5f, 0.5f);
371 rotationMatrix.mapPoints(points);
  /external/opencv3/modules/calib3d/test/
test_cameracalibration.cpp 264 double* rotationMatrix, double* translationVector,
681 double* rotationMatrix, double* translationVector,
708 double* rotationMatrix, double* translationVector,
715 CvMat _rotationMatrix = cvMat(3, 3, CV_64F, rotationMatrix);
733 double* rotationMatrix, double* translationVector,
797 double* rotationMatrix, double* translationVector,
801 Mat rmat( 3, 3, CV_64FC1, rotationMatrix ),
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
CaptureModule.java     [all...]
  /external/opencv3/3rdparty/openexr/Imath/
ImathMatrixAlgo.h 221 template <class T> Matrix44<T> rotationMatrix (const Vec3<T> &fromDirection,
827 rotationMatrix (const Vec3<T> &from, const Vec3<T> &to)
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 226 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 218 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
  /external/deqp/modules/gles2/functional/
es2fTextureMipmapTests.cpp 230 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureMipmapTests.cpp 274 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
    [all...]

Completed in 1377 milliseconds