/external/vulkan-validation-layers/libs/glm/gtx/ |
rotate_vector.hpp | 58 GLM_FUNC_DECL detail::tvec2<T, P> rotate( 59 detail::tvec2<T, P> const & v,
|
io.hpp | 120 GLM_FUNC_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, tvec2<T,P> const&);
|
/external/vulkan-validation-layers/libs/glm/detail/ |
type_mat3x2.hpp | 47 typedef tvec2<T, P> col_type; 91 tvec2<V1, P> const & v1, 92 tvec2<V2, P> const & v2, 93 tvec2<V3, P> const & v3);
|
type_mat4x2.hpp | 47 typedef tvec2<T, P> col_type; 96 tvec2<V1, P> const & v1, 97 tvec2<V2, P> const & v2, 98 tvec2<V3, P> const & v3, 99 tvec2<V4, P> const & v4);
|
type_vec3.hpp | 74 _GLM_SWIZZLE3_2_MEMBERS(T, P, tvec2, x, y, z) 75 _GLM_SWIZZLE3_2_MEMBERS(T, P, tvec2, r, g, b) 76 _GLM_SWIZZLE3_2_MEMBERS(T, P, tvec2, s, t, p) 90 GLM_SWIZZLE_GEN_VEC_FROM_VEC3(T, P, detail::tvec3, detail::tvec2, detail::tvec3, detail::tvec4) 135 GLM_FUNC_DECL explicit tvec3(tvec2<A, Q> const & v, B const & s); 138 GLM_FUNC_DECL explicit tvec3(A const & s, tvec2<B, Q> const & v); 157 GLM_FUNC_DECL tvec3(_swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v, T const & s) 163 GLM_FUNC_DECL tvec3(T const & s, _swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v)
|
type_mat.hpp | 37 template <typename T, precision P> struct tvec2; [all...] |
type_mat2x3.hpp | 48 typedef tvec2<T, P> row_type;
|
type_mat2x4.hpp | 48 typedef tvec2<T, P> row_type;
|
type_vec1.hpp | 98 GLM_FUNC_DECL explicit tvec1(tvec2<U, Q> const & v);
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
matrix_transform.hpp | 272 detail::tvec2<T, P> const & center, 273 detail::tvec2<T, P> const & delta,
|
type_ptr.hpp | 95 GLM_FUNC_DECL detail::tvec2<T, defaultp> make_vec2(T const * const ptr);
|
/external/opencv3/modules/calib3d/test/ |
test_solvepnp_ransac.cpp | 283 Mat tvec1, tvec2; local 307 solvePnPRansac(object, image, camera_mat, dist_coef, rvec2, tvec2); 311 double tnorm = cvtest::norm(tvec1, tvec2, NORM_INF);
|
/external/opencv3/modules/calib3d/misc/java/test/ |
Calib3dTest.java | 37 Mat tvec2 = new Mat(3, 1, CvType.CV_32F); local 38 tvec2.put(0, 0, 0.70243168, 0.4784472, 0.79219002); 48 Calib3d.composeRT(rvec1, tvec1, rvec2, tvec2, rvec3, tvec3);
|
/external/opencv3/modules/calib3d/include/opencv2/ |
calib3d.hpp | 405 @param tvec2 Second translation vector. 416 tvec2, respectively. 420 \f[\begin{array}{l} \texttt{rvec3} = \mathrm{rodrigues} ^{-1} \left ( \mathrm{rodrigues} ( \texttt{rvec2} ) \cdot \mathrm{rodrigues} ( \texttt{rvec1} ) \right ) \\ \texttt{tvec3} = \mathrm{rodrigues} ( \texttt{rvec2} ) \cdot \texttt{tvec1} + \texttt{tvec2} \end{array} ,\f] 431 InputArray rvec2, InputArray tvec2, [all...] |
/external/opencv3/modules/java/src/ |
calib3d+Calib3d.java | 347 // C++: void composeRT(Mat rvec1, Mat tvec1, Mat rvec2, Mat tvec2, Mat& rvec3, Mat& tvec3, Mat& dr3dr1 = Mat(), Mat& dr3dt1 = Mat(), Mat& dr3dr2 = Mat(), Mat& dr3dt2 = Mat(), Mat& dt3dr1 = Mat(), Mat& dt3dt1 = Mat(), Mat& dt3dr2 = Mat(), Mat& dt3dt2 = Mat()) 350 //javadoc: composeRT(rvec1, tvec1, rvec2, tvec2, rvec3, tvec3, dr3dr1, dr3dt1, dr3dr2, dr3dt2, dt3dr1, dt3dt1, dt3dr2, dt3dt2) 351 public static void composeRT(Mat rvec1, Mat tvec1, Mat rvec2, Mat tvec2, Mat rvec3, Mat tvec3, Mat dr3dr1, Mat dr3dt1, Mat dr3dr2, Mat dr3dt2, Mat dt3dr1, Mat dt3dt1, Mat dt3dr2, Mat dt3dt2) 354 composeRT_0(rvec1.nativeObj, tvec1.nativeObj, rvec2.nativeObj, tvec2.nativeObj, rvec3.nativeObj, tvec3.nativeObj, dr3dr1.nativeObj, dr3dt1.nativeObj, dr3dr2.nativeObj, dr3dt2.nativeObj, dt3dr1.nativeObj, dt3dt1.nativeObj, dt3dr2.nativeObj, dt3dt2.nativeObj); 359 //javadoc: composeRT(rvec1, tvec1, rvec2, tvec2, rvec3, tvec3) 360 public static void composeRT(Mat rvec1, Mat tvec1, Mat rvec2, Mat tvec2, Mat rvec3, Mat tvec3) 363 composeRT_1(rvec1.nativeObj, tvec1.nativeObj, rvec2.nativeObj, tvec2.nativeObj, rvec3.nativeObj, tvec3.nativeObj); [all...] |
calib3d.cpp | 1861 Mat& tvec2 = *((Mat*)tvec2_nativeObj); local 1895 Mat& tvec2 = *((Mat*)tvec2_nativeObj); local [all...] |
/external/opencv3/modules/calib3d/src/ |
calibration.cpp | [all...] |
/cts/apps/CtsVerifier/libs/ |
opencv3-android.jar | |