/external/opencv3/doc/tutorials/imgproc/imgtrans/warp_affine/ |
D | warp_affine.markdown | 1 Affine Transformations {#tutorial_warp_affine} 15 ### What is an Affine Transformation? 19 -# From the above, We can use an Affine Transformation to express: 25 you can see that, in essence, an Affine Transformation represents a **relation** between two 28 -# The usual way to represent an Affine Transform is by using a \f$2 \times 3\f$ matrix. 61 ### How do we get an Affine Transformation? 63 -# Excellent question. We mentioned that an Affine Transformation is basically a **relation** 76 triangle, but now they have changed notoriously. If we find the Affine Transformation with these 85 - Applies an Affine Transform to the image. This Transform is obtained from the relation 99 points to store the 2D points that define our Affine Transform. [all …]
|
/external/eigen/Eigen/src/Geometry/ |
D | Scaling.h | 59 inline Transform<Scalar,Dim,Affine> operator* (const Translation<Scalar,Dim>& t) const; 63 …inline Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> operator* (const Transform<Sca… 65 Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> res = t; 153 inline Transform<Scalar,Dim,Affine> 156 Transform<Scalar,Dim,Affine> res;
|
D | Hyperplane.h | 218 inline Hyperplane& transform(const MatrixBase<XprType>& mat, TransformTraits traits = Affine) 220 if (traits==Affine) 239 inline Hyperplane& transform(const Transform<Scalar,AmbientDimAtCompileTime,Affine,TrOptions>& t, 240 TransformTraits traits = Affine)
|
D | RotationBase.h | 80 …friend inline Transform<Scalar,Dim,Affine> operator*(const DiagonalMatrix<Scalar,Dim>& l, const De… 82 Transform<Scalar,Dim,Affine> res(r); 112 typedef Transform<Scalar,Dim,Affine> ReturnType;
|
D | Transform.h | 220 enum { TransformTimeDiagonalMode = ((Mode==int(Isometry))?Affine:int(Mode)) }; 235 internal::transform_make_affine<(int(Mode)==Affine) ? Affine : AffineCompact>::run(m_matrix); in Transform() 307 …EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(OtherMode==int(Affine)||OtherMode==int(AffineCompact), Mode!=int… in Transform() 534 …inline Transform<Scalar,Dim,(int(Mode)==int(Isometry)?int(Affine):int(Mode))> operator*(const Unif… 536 Transform<Scalar,Dim,(int(Mode)==int(Isometry)?int(Affine):int(Mode)),Options> res = *this; 649 typedef Transform<float,2,Affine> Affine2f; 651 typedef Transform<float,3,Affine> Affine3f; 653 typedef Transform<double,2,Affine> Affine2d; 655 typedef Transform<double,3,Affine> Affine3d; 1152 else if(hint&Affine) [all …]
|
D | Translation.h | 43 typedef Transform<Scalar,Dim,Affine> AffineTransformType;
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | affine.hpp | 129 Affine3(const Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>& affine); 130 Affine3(const Eigen::Transform<T, 3, Eigen::Affine>& affine); 131 operator Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>() const; 132 operator Eigen::Transform<T, 3, Eigen::Affine>() const; 489 cv::Affine3<T>::Affine3(const Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>& affine) in Affine3() argument 495 cv::Affine3<T>::Affine3(const Eigen::Transform<T, 3, Eigen::Affine>& affine) in Affine3() 497 Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)> a = affine; in Affine3() 502 cv::Affine3<T>::operator Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>() const in operator Eigen::Transform<T,3,Eigen::Affine,(Eigen::RowMajor)>() 504 Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)> r; in operator Eigen::Transform<T,3,Eigen::Affine,(Eigen::RowMajor)>() 511 cv::Affine3<T>::operator Eigen::Transform<T, 3, Eigen::Affine>() const in operator Eigen::Transform<T,3,Eigen::Affine>() [all …]
|
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
D | Hyperplane.h | 196 inline Hyperplane& transform(const MatrixBase<XprType>& mat, TransformTraits traits = Affine) 198 if (traits==Affine) 217 TransformTraits traits = Affine)
|
D | Transform.h | 245 inline const MatrixType inverse(TransformTraits traits = Affine) const; 715 if (traits == Affine)
|
/external/eigen/Eigen/src/Core/util/ |
D | Constants.h | 394 Affine = 0x2, enumerator 396 AffineCompact = 0x10 | Affine,
|
/external/eigen/test/ |
D | geo_transformations.cpp | 371 VERIFY_IS_APPROX(t0.inverse(Affine).matrix(), t044.inverse().block(0,0,t0.matrix().rows(),4)); in transformations() 475 typedef Transform<Scalar,Dim,Affine,Options> Aff; in transform_products() 497 CALL_SUBTEST_1(( transformations<double,Affine,AutoAlign>() )); in test_geo_transformations() 498 CALL_SUBTEST_1(( non_projective_only<double,Affine,AutoAlign>() )); in test_geo_transformations() 508 CALL_SUBTEST_4(( transformations<float,Affine,RowMajor|AutoAlign>() )); in test_geo_transformations() 509 CALL_SUBTEST_4(( non_projective_only<float,Affine,RowMajor>() )); in test_geo_transformations()
|
D | geo_homogeneous.cpp | 71 Transform<Scalar, Size, Affine> aff; in homogeneous()
|
/external/eigen/unsupported/Eigen/ |
D | OpenGLSupport | 169 template<typename Scalar> void glMultMatrix(const Transform<Scalar,3,Affine>& t) { glMultMat… 171 …nst Transform<Scalar,3,AffineCompact>& t) { glMultMatrix(Transform<Scalar,3,Affine>(t).matrix()); } 177 template<typename Scalar> void glLoadMatrix(const Transform<Scalar,3,Affine>& t) { glLoadMat… 179 …nst Transform<Scalar,3,AffineCompact>& t) { glLoadMatrix(Transform<Scalar,3,Affine>(t).matrix()); }
|
/external/eigen/doc/ |
D | TutorialGeometry.dox | 58 N-D \ref TutorialGeoTransform "Affine transformation"</td><td>\code 59 Transform<float,N,Affine> t = concatenation_of_any_transformations; 60 Transform<float,3,Affine> t = Translation3f(p) * AngleAxisf(a,axis) * Scaling(s);\endcode</td></tr> 113 <a href="#" class="top">top</a>\section TutorialGeoTransform Affine transformations
|
D | A05_PortingFrom2To3.dox | 235 …ode template parameter, which indicates whether it's \a Projective or \a Affine transform. There i… 237 …more. In Eigen 3, the Transform typedefs explicitly refer to the \a Projective and \a Affine modes:
|
/external/eigen/unsupported/test/ |
D | openglsupport.cpp | 159 Transform<float,3,Affine> af3(acf3); in test_openglsupport() 171 Transform<double,3,Affine> ad3(acd3); in test_openglsupport()
|
/external/eigen/bench/ |
D | geometry.cpp | 101 Transform<Scalar,3,Affine> aff3(mat34); in main()
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.texture.mipmap.txt | 27 + Affine and projected transforms
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_geometric_transformations/ |
D | py_geometric_transformations.markdown | 100 ### Affine Transformation
|
/external/eigen/test/eigen2/ |
D | eigen2_geometry_with_eigen2_prefix.cpp | 334 VERIFY_IS_APPROX(t0.inverse(Affine), t0.matrix().inverse()); in geometry()
|
D | eigen2_geometry.cpp | 332 VERIFY_IS_APPROX(t0.inverse(Affine), t0.matrix().inverse()); in geometry()
|
/external/parameter-framework/upstream/doc/requirements/ |
D | requirements.md | 326 - Affine adaptation: `affAd(value) = slope * value + offset` where slope and
|