HomeSort by relevance Sort by last modified time
    Searched full:matrix (Results 1001 - 1025 of 4077) sorted by null

<<41424344454647484950>>

  /external/opencv/cxcore/src/
cximage.cpp 98 CV_ERROR( CV_StsUnsupportedFormat, "The object is neither an image, nor a matrix" );
219 matrix = (CvMat*)cvMemStorageAlloc( storage, sizeof(*matrix) );
220 cvInitMatHeader( matrix, rows, cols, type, alloc_data ?
224 matrix = 0;
249 CV_ERROR( CV_StsUnsupportedFormat, "The object is neither an image, nor a matrix" );
340 if( !matrix )
343 cvSave( filename, matrix, matname );
347 save_image( filename, matrix );
360 if( matrix )
    [all...]
  /external/skia/include/pdf/
SkPDFDevice.h 95 const SkMatrix& matrix, const SkPaint&) SK_OVERRIDE;
104 const SkPath& path, const SkMatrix* matrix,
274 const SkMatrix& matrix,
283 void populateGraphicStateEntryFromPaint(const SkMatrix& matrix,
297 void internalDrawBitmap(const SkMatrix& matrix,
314 bool handleRectAnnotation(const SkRect& r, const SkMatrix& matrix,
317 const SkMatrix& matrix, const SkPaint& paint);
318 SkPDFDict* createLinkAnnotation(const SkRect& r, const SkMatrix& matrix);
320 const SkMatrix& matrix);
322 const SkMatrix& matrix);
    [all...]
  /external/skia/src/effects/gradients/
SkGradientShaderPriv.h 280 * The interpretation of the texture matrix depends on the sample mode. The
281 * texture matrix is applied both when the texture coordinates are explicit
283 * case the texture matrix is applied to the pre-view-matrix position
287 * The post-matrix texture coordinates are in normalize space with (0,0) at
290 * The matrix specifies the radial gradient parameters.
291 * (0,0) in the post-matrix space is center of the radial gradient.
293 * Matrix transforms to space where first circle is centered at the
295 * 0 and is provided by setRadial2Params. The post-matrix space is
298 * The angle from the origin of texture coordinates in post-matrix spac
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 41 Give reasonable guess of the calibration matrix for normalization purposes.
42 Use real K matrix when doing real geometry.
44 \param K calibration matrix (out)
50 \return K(3x3) intrinsic calibration matrix
55 Make a 2x2 identity matrix
63 Make a 3x3 identity matrix
72 Invert intrinsic calibration matrix K(3x3)
232 \param Hinv inverted matrix
233 \param H input matrix
234 \return true if success and false if matrix is ill-conditioned (det < 1e-7
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 41 Give reasonable guess of the calibration matrix for normalization purposes.
42 Use real K matrix when doing real geometry.
44 \param K calibration matrix (out)
50 \return K(3x3) intrinsic calibration matrix
55 Make a 2x2 identity matrix
63 Make a 3x3 identity matrix
72 Invert intrinsic calibration matrix K(3x3)
232 \param Hinv inverted matrix
233 \param H input matrix
234 \return true if success and false if matrix is ill-conditioned (det < 1e-7
    [all...]
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_rotation.h 34 Takes a unit quaternion and gives its corresponding rotation matrix.
35 \param R rotation matrix (out)
  /external/ceres-solver/internal/ceres/
schur_eliminator_test.cc 80 Matrix J;
84 Matrix H = (D.cwiseProduct(D)).asDiagonal();
99 Matrix P = H.block(0, 0, num_eliminate_cols, num_eliminate_cols);
100 Matrix Q = H.block(0,
104 Matrix R = H.block(num_eliminate_cols,
116 .solve(Matrix::Identity(block_size, block_size));
176 Matrix delta = (lhs_ref - lhs_expected).selfadjointView<Eigen::Upper>();
191 Matrix lhs_expected;
  /external/chromium_org/cc/output/
shader.cc 162 "matrix",
179 uniform mat4 matrix; local
182 gl_Position = matrix * a_position;
195 "matrix",
217 uniform mat4 matrix; local
222 gl_Position = matrix * a_position;
235 "matrix",
251 uniform mat4 matrix;
253 gl_Position = matrix * a_position;
267 "matrix",
289 uniform mat4 matrix[8]; local
346 uniform mat4 matrix; local
403 uniform mat4 matrix; local
462 uniform mat4 matrix; local
518 uniform mat4 matrix; local
566 uniform mat4 matrix; local
619 uniform mat4 matrix; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransform.idl 37 readonly attribute SVGMatrix matrix;
40 [RaisesException] void setMatrix(SVGMatrix matrix);
  /external/chromium_org/third_party/opus/src/silk/fixed/
main_FIX.h 199 const opus_int32 *wXX, /* I Correlation matrix */
216 /* Calculates correlation matrix X'*X */
218 const opus_int16 *x, /* I x vector [L + order - 1] used to form data matrix X */
222 opus_int32 *XX, /* O Pointer to X'*X correlation matrix [ order x order ] */
228 const opus_int16 *x, /* I x vector [L + order - 1] used to form data matrix X */
236 /* Add noise to matrix diagonal */
246 opus_int32 *A, /* I Pointer to symetric square matrix A */
247 opus_int M, /* I Size of matrix */
  /external/chromium_org/third_party/skia/debugger/QT/
SkInspectorWidget.h 55 Sets the text in the current matrix.
58 void setMatrix(const SkMatrix& matrix);
  /external/chromium_org/third_party/skia/src/effects/
SkGpuBlurUtils.cpp 167 SkMatrix matrix; local
168 matrix.setIDiv(srcTexture->width(), srcTexture->height());
174 matrix.mapRect(&domain, rect);
179 matrix,
186 paint.addColorTextureEffect(srcTexture, matrix, params);
243 SkMatrix matrix; local
244 matrix.setIDiv(srcTexture->width(), srcTexture->height());
250 paint.addColorTextureEffect(srcTexture, matrix, params);
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConfigConversionEffect.h 41 const SkMatrix& matrix);
66 const SkMatrix& matrix);
GrSimpleTextureEffect.cpp 78 const SkMatrix& matrix = GrEffectUnitTest::TestMatrix(random); local
79 return GrSimpleTextureEffect::Create(textures[texIdx], matrix, coordSet);
  /external/chromium_org/third_party/skia/src/utils/
SkNWayCanvas.cpp 89 void SkNWayCanvas::didConcat(const SkMatrix& matrix) {
92 iter->concat(matrix);
94 this->INHERITED::didConcat(matrix);
97 void SkNWayCanvas::didSetMatrix(const SkMatrix& matrix) {
100 iter->setMatrix(matrix);
102 this->INHERITED::didSetMatrix(matrix);
261 const SkMatrix* matrix, const SkPaint& paint) {
264 iter->drawTextOnPath(text, byteLength, path, matrix, paint);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/gl/
SurfaceTexturePlatformWrapper.java 69 private static void getTransformMatrix(SurfaceTexture surfaceTexture, float[] matrix) {
70 surfaceTexture.getTransformMatrix(matrix);
  /external/eigen/Eigen/src/Core/
CoreIterators.h 20 * \brief An InnerIterator allows to loop over the element of a sparse (or dense) matrix or expression
25 // generic version for dense matrix and expressions
Diagonal.h 19 * \brief Expression of a diagonal/subdiagonal/superdiagonal in a matrix
26 * The matrix is not required to be square.
29 * of a square matrix. It is the return type of MatrixBase::diagonal() and MatrixBase::diagonal(Index) and most of the
73 inline Diagonal(MatrixType& matrix, Index a_index = DiagIndex) : m_matrix(matrix), m_index(a_index) {}
158 /** \returns an expression of the main diagonal of the matrix \c *this
181 /** \returns an expression of the \a DiagIndex-th sub or super diagonal of the matrix \c *this
207 /** \returns an expression of the \a DiagIndex-th sub or super diagonal of the matrix \c *this
  /external/eigen/doc/
TopicMultithreading.dox 25 * general matrix - matrix products
  /external/eigen/test/eigen2/
eigen2_inverse.cpp 24 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
56 CALL_SUBTEST_1( inverse(Matrix<double,1,1>()) );
eigen2_product_large.cpp 19 CALL_SUBTEST_5( product(Matrix<float,Dynamic,Dynamic,RowMajor>(ei_random<int>(1,320), ei_random<int>(1,320))) );
33 // test deferred resizing in Matrix::operator=
  /external/eigen/test/
eigensolver_generalized_real.cpp 24 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
55 CALL_SUBTEST_3( generalized_eigensolver_real(Matrix<double,1,1>()) );
spqr_support.cpp 32 Matrix<Scalar,Dynamic,Dynamic> dA;
33 typedef Matrix<Scalar,Dynamic,1> DenseVector;
  /external/eigen/unsupported/Eigen/src/Polynomials/
Companion.h 51 typedef Matrix<Scalar, Deg, 1> RightColumn;
53 typedef Matrix<Scalar, Deg_1, 1> BottomLeftDiagonal;
55 typedef Matrix<Scalar, Deg, Deg> DenseCompanionMatrixType;
56 typedef Matrix< Scalar, _Deg, Deg_1 > LeftBlock;
57 typedef Matrix< Scalar, Deg_1, Deg_1 > BottomLeftBlock;
58 typedef Matrix< Scalar, 1, Deg_1 > LeftBlockFirstRow;
125 * "Balancing a matrix for calculation of eigenvalues and eigenvectors"
127 * A matrix with non zero row and non zero column is balanced
  /external/libopus/silk/fixed/
main_FIX.h 199 const opus_int32 *wXX, /* I Correlation matrix */
216 /* Calculates correlation matrix X'*X */
218 const opus_int16 *x, /* I x vector [L + order - 1] used to form data matrix X */
222 opus_int32 *XX, /* O Pointer to X'*X correlation matrix [ order x order ] */
228 const opus_int16 *x, /* I x vector [L + order - 1] used to form data matrix X */
236 /* Add noise to matrix diagonal */
246 opus_int32 *A, /* I Pointer to symetric square matrix A */
247 opus_int M, /* I Size of matrix */

Completed in 932 milliseconds

<<41424344454647484950>>