Searched defs:affine (Results 1 - 13 of 13) sorted by relevance

/external/libchrome/crypto/
H A Dp224_unittest.cc29 // |scalar| is a big-endian scalar and |affine| is the external representation
33 uint8_t affine[28 * 2]; member in struct:crypto::TestVector
792 EXPECT_TRUE(memcmp(external.data(), kNISTTestVectors[i].affine,
801 reinterpret_cast<const char *>(kNISTTestVectors[10].affine), 56)));
803 reinterpret_cast<const char *>(kNISTTestVectors[11].affine), 56)));
/external/libweave/third_party/chromium/crypto/
H A Dp224_unittest.cc29 // |scalar| is a big-endian scalar and |affine| is the external representation
33 uint8_t affine[28 * 2]; member in struct:crypto::TestVector
792 EXPECT_TRUE(memcmp(external.data(), kNISTTestVectors[i].affine,
801 reinterpret_cast<const char *>(kNISTTestVectors[10].affine), 56)));
803 reinterpret_cast<const char *>(kNISTTestVectors[11].affine), 56)));
/external/opencv3/modules/core/include/opencv2/core/
H A Daffine.hpp71 //! Augmented affine matrix
72 Affine3(const Mat4& affine);
119 //! a.concatenate(affine) is equivalent to affine * a;
120 Affine3 concatenate(const Affine3& affine) const;
129 Affine3(const Eigen::Transform<T, 3, Eigen::Affine, (Eigen::RowMajor)>& affine);
130 Affine3(const Eigen::Transform<T, 3, Eigen::Affine>& affine);
140 V operator*(const Affine3<T>& affine, const V& vector);
145 static Vec3f operator*(const Affine3f& affine, const Vec3f& vector);
146 static Vec3d operator*(const Affine3d& affine, cons
180 Affine3(const Mat4& affine) argument
[all...]
/external/opencv3/modules/shape/src/
H A Daff_trans.cpp219 Mat affine; local
220 estimateRigidTransform(shape1, shape2, fullAffine).convertTo(affine, CV_32F);
222 if (affine.empty())
223 affine=_localAffineEstimate(shape1, shape2, fullAffine); //In case there is not good solution, just give a LLS based one
225 affineMat = affine;
H A Dtps_trans.cpp124 float affine=a1+ax*point.x+ay*point.y; local
134 out.x=affine+nonrigid;
138 out.y=affine+nonrigid;
/external/skia/tests/
H A DGradientTest.cpp30 const SkScalar affine[] = { local
34 matrix.setAffine(affine);
H A DMatrixTest.cpp906 SkScalar affine[6]; local
907 REPORTER_ASSERT(reporter, mat.asAffine(affine));
909 #define affineEqual(e) affine[SkMatrix::kA##e] == mat.get(SkMatrix::kM##e)
919 REPORTER_ASSERT(reporter, !mat.asAffine(affine));
/external/opencv3/modules/viz/src/
H A Dvizcore.cpp280 Affine3d affine; local
281 bool ok = readPose(cv::format(files_format.c_str(), i), affine, tag);
285 traj.push_back(affine);
303 Affine3d affine; local
306 pose.copyTo(affine.matrix);
307 writePose(cv::format(files_format.c_str(), index), affine, tag); local
/external/eigen/Eigen/src/Geometry/
H A DTransform.h93 * Therefore, an affine transformation matrix M is shaped like this:
156 * transformation of non homogeneous vectors by an affine transformation. In
202 /** type of read/write reference to the affine part of the transformation */
206 /** type of read reference to the affine part of the transformation */
377 /** \returns a read-only expression of the Dim x HDim affine part of the transformation */
378 inline ConstAffinePart affine() const { return take_affine_part::run(m_matrix); } function in class:Eigen::Transform
379 /** \returns a writable expression of the Dim x HDim affine part of the transformation */
380 inline AffinePart affine() { return take_affine_part::run(m_matrix); } function in class:Eigen::Transform
395 * \li an affine transformation matrix of size Dim x Dim+1,
408 * \li an affine transformatio
[all...]
/external/skia/src/pdf/
H A DSkPDFShader.cpp643 // Finds affine and persp such that in = affine * persp.
645 static bool split_perspective(const SkMatrix in, SkMatrix* affine, argument
674 affine->setAll(sx - p0 * tx / p2, kx - p1 * tx / p2, tx / p2,
/external/opencv3/modules/calib3d/src/
H A Dfisheye.cpp62 void cv::fisheye::projectPoints(InputArray objectPoints, OutputArray imagePoints, const Affine3d& affine, argument
65 projectPoints(objectPoints, imagePoints, affine.rvec(), affine.translation(), K, D, alpha, jacobian);
/external/skia/src/core/
H A DSkMatrix.cpp139 // along with affine.
144 // For rectStaysRect, in the affine case, we only need check that
157 // Only test for scale explicitly if not affine, since affine sets the
163 // Not affine, therefore we already know secondary diagonal is
384 // TODO: The persp/affine preconditions are in place to keep the mask consistent with
782 void SkMatrix::SetAffineIdentity(SkScalar affine[6]) { argument
783 affine[kAScaleX] = 1;
784 affine[kASkewY] = 0;
785 affine[kASkew
[all...]
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp537 SkScalar affine[6]; local
538 if (!matrix.asAffine(affine)) {
543 SkScalarToFLOAT(affine[SkMatrix::kAScaleX]),
544 SkScalarToFLOAT(affine[SkMatrix::kASkewY]),
545 SkScalarToFLOAT(affine[SkMatrix::kASkewX]),
546 SkScalarToFLOAT(affine[SkMatrix::kAScaleY]),
547 SkScalarToFLOAT(affine[SkMatrix::kATransX]),
548 SkScalarToFLOAT(affine[SkMatrix::kATransY]),
928 //TODO: figure out how to fake better if not affine
1064 //simple if affine an
[all...]

Completed in 495 milliseconds