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

  /external/eigen/Eigen/src/Geometry/
Scaling.h 59 inline Transform<Scalar,Dim,Affine> operator* (const Translation<Scalar,Dim>& t) const;
61 /** Concatenates a uniform scaling and an affine transformation */
63 inline Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> operator* (const Transform<Scalar,Dim, Mode, Options>& t) const
65 Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> res = t;
157 inline Transform<Scalar,Dim,Affine>
160 Transform<Scalar,Dim,Affine> res;
Hyperplane.h 22 * A hyperplane is an affine subspace of dimension n-1 in a space of dimension n.
214 * or a more generic #Affine transformation. The default is #Affine.
217 EIGEN_DEVICE_FUNC inline Hyperplane& transform(const MatrixBase<XprType>& mat, TransformTraits traits = Affine)
219 if (traits==Affine)
237 * or a more generic #Affine transformation. The default is #Affine.
241 EIGEN_DEVICE_FUNC inline Hyperplane& transform(const Transform<Scalar,AmbientDimAtCompileTime,Affine,TrOptions>& t,
242 TransformTraits traits = Affine)
RotationBase.h 80 EIGEN_DEVICE_FUNC friend inline Transform<Scalar,Dim,Affine> operator*(const DiagonalMatrix<Scalar,Dim>& l, const Derived& r)
82 Transform<Scalar,Dim,Affine> res(r);
112 typedef Transform<Scalar,Dim,Affine> ReturnType;
Transform.h 95 * - #Affine: the transformation is stored as a (Dim+1)^2 matrix,
110 * Therefore, an affine transformation matrix M is shaped like this:
151 * \b Affine \b Matrix A (Dim)x(Dim+1):
179 * transformation of non homogeneous vectors by an affine transformation. In
226 /** type of read/write reference to the affine part of the transformation */
230 /** type of read reference to the affine part of the transformation */
244 enum { TransformTimeDiagonalMode = ((Mode==int(Isometry))?Affine:int(Mode)) };
255 * If Mode==Affine, then the last row is set to [0 ... 0 1] */
259 internal::transform_make_affine<(int(Mode)==Affine) ? Affine : AffineCompact>::run(m_matrix)
405 EIGEN_DEVICE_FUNC inline ConstAffinePart affine() const { return take_affine_part::run(m_matrix); } function in class:Eigen::Transform
407 EIGEN_DEVICE_FUNC inline AffinePart affine() { return take_affine_part::run(m_matrix); } function in class:Eigen::Transform
    [all...]
Translation.h 42 /** corresponding affine transformation type */
43 typedef Transform<Scalar,Dim,Affine> AffineTransformType;
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
affine_test.py 15 """Affine Tests."""
25 from tensorflow.contrib.distributions.python.ops.bijectors.affine import Affine
39 bijector = Affine(shift=mu, event_ndims=0)
40 self.assertEqual("affine", bijector.name)
56 bijector = Affine(
79 bijector = Affine(shift=mu, scale_identity_multiplier=2., event_ndims=0)
101 bijector = Affine(
129 bijector = Affine(shift=mu, event_ndims=0)
151 bijector = Affine(scale_identity_multiplier=multiplier, event_ndims=0
    [all...]
cholesky_outer_product_test.py 38 bijectors.Affine(
invert_test.py 38 bijectors.Affine(
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
autoregressive_test.py 24 from tensorflow.contrib.distributions.python.ops.bijectors.affine import Affine
59 affine = Affine(scale_tril=self._random_scale_tril(event_size))
61 self._normal_fn(affine), sample0, validate_args=True)
73 affine = Affine(scale_tril=self._random_scale_tril(event_size))
75 self._normal_fn(affine), sample0, validate_args=True)
78 shift_and_log_scale_fn=lambda x: [None, affine.forward(x)],
transformed_distribution_test.py 248 bijector=ds.bijectors.Affine(
282 # In the case of `Affine`, if we got it wrong then it would fire an
293 bijector=bs.Affine(shift=self._shift, scale_tril=self._tril),
301 bijector=bs.Affine(shift=self._shift, scale_tril=self._tril),
306 actual_mean = np.tile(self._shift, [2, 1]) # Affine elided this tile.
402 bijector=bs.Affine(shift=self._shift, scale_tril=self._tril),
419 bijector=bs.Affine(shift=self._shift, scale_tril=self._tril),
432 bijector=bs.Affine(shift=self._shift, scale_tril=self._tril),
  /external/eigen/Eigen/src/Core/util/
Constants.h 448 /** Transformation is an affine transformation stored as a (Dim+1)^2 matrix whose last row is
450 Affine = 0x2,
451 /** Transformation is an affine transformation stored as a (Dim) x (Dim+1) matrix. */
452 AffineCompact = 0x10 | Affine,
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
vector_student_t.py 66 This distribution is an Affine transformation of iid
120 `tf.contrib.distributions.bijectors.Affine` docstring.
138 `Affine.batch_shape` where `Affine` is constructed from `loc` and
141 The `event_shape` is the event shape of `Affine.event_shape`.
184 # relationship between df.batch_shape and affine.batch_shape. In
187 # if affine.batch_shape is not scalar:
189 # # it has affine.batch_shape.
190 # self.batch_shape = affine.batch_shape
192 # if affine.batch_shape is scalar
    [all...]
sinh_arcsinh.py 177 # Make the Affine bijector, Z --> loc + scale * Z (2 / F_0(2))
179 affine = bijectors.Affine(
185 bijector = bijectors.Chain([affine, f])
vector_sinh_arcsinh_diag.py 226 # Make the Affine bijector, Z --> loc + C * Z.
229 affine = bijectors.Affine(
232 bijector = bijectors.Chain([affine, f])
  /external/eigen/bench/
geometry.cpp 101 Transform<Scalar,3,Affine> aff3(mat34);
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
affine.py 15 """Affine bijector."""
35 "Affine",
44 class Affine(bijector.Bijector):
69 b = Affine()
72 b = Affine(shift=[1., 2, 3])
75 b = Affine(shift=[1., 2, 3],
79 b = Affine(shift=[1., 2, 3],
83 b = Affine(shift=[1., 2, 3],
89 b = Affine(shift=[1., 2, 3],
109 name="affine")
    [all...]
  /external/eigen/test/
geo_transformations.cpp 388 VERIFY_IS_APPROX(t0.inverse(Affine).matrix(), t044.inverse().block(0,0,t0.matrix().rows(),4));
527 typedef Transform<Scalar,Dim,Affine,Options> AffineType;
596 typedef Transform<Scalar,Dim,Affine,Options> Aff;
618 CALL_SUBTEST_1(( transformations<double,Affine,AutoAlign>() ));
619 CALL_SUBTEST_1(( non_projective_only<double,Affine,AutoAlign>() ));
629 CALL_SUBTEST_4(( transformations<float,Affine,RowMajor|AutoAlign>() ));
630 CALL_SUBTEST_4(( non_projective_only<float,Affine,RowMajor>() ));
geo_homogeneous.cpp 76 Transform<Scalar, Size, Affine> aff;
82 aff.affine().setRandom();
  /external/ImageMagick/www/api/
distort.php 59 <p>AffineTransformImage() transforms an image as dictated by the affine matrix. It allocates the memory necessary for the new Image structure and returns a pointer to the new image.</p>
80 <dd>the affine matrix. </dd>
120 <dd> Affine, Perspective, and Bilinear, do least squares fitting of the distrotion when more than the minimum number of control point pairs are provided. </dd>
122 <dd> Perspective, and Bilinear, fall back to a Affine distortion when less than 4 control point pairs are provided. While Affine distortions let you use any number of control point pairs, that is Zero pairs is a No-Op (viewport only) distortion, one pair is a translation and two pairs of control points do a scale-rotate-translate, without any shearing. </dd>
drawing-wand.php 125 <p>DrawAffine() adjusts the current affine transformation matrix with the specified affine transformation matrix. Note that the current affine transform is adjusted rather than replaced.</p>
130 void DrawAffine(DrawingWand *wand,const AffineMatrix *affine)
144 <dt>affine</dt>
145 <dd>Affine matrix parameters </dd>
    [all...]
magick-image.php 268 <p>MagickAffineTransformImage() transforms an image as dictated by the affine matrix of the drawing wand.</p>
    [all...]
  /external/eigen/unsupported/test/
openglsupport.cpp 159 Transform<float,3,Affine> af3(acf3);
171 Transform<double,3,Affine> ad3(acd3);
  /external/tensorflow/tensorflow/python/ops/distributions/
bijector_impl.py 222 - "Affine"

Completed in 372 milliseconds