Home
last modified time | relevance | path

Searched refs:_jac (Results 1 – 4 of 4) sorted by relevance

/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffJacobian.h48 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const in operator()
51 if (!_jac) in operator()
57 JacobianType& jac = *_jac; in operator()
/external/eigen/unsupported/Eigen/
DAdolcForward121 void operator() (const InputType& x, ValueType* v, JacobianType* _jac) const
124 if (!_jac)
130 JacobianType& jac = *_jac;
/external/opencv3/modules/stitching/src/
Dmotion_estimators.cpp221 CvMat* _jac = 0; in estimate() local
224 bool proceed = solver.update(_param, _jac, _err); in estimate()
231 if (_jac) in estimate()
235 cvCopy(&tmp, _jac); in estimate()
/external/opencv3/modules/calib3d/test/
Dtest_fundam.cpp353 CvMat _src = src, _dst = dst, _jac; in Rodrigues() local
355 _jac = *jac; in Rodrigues()
356 cvTsRodrigues(&_src, &_dst, jac ? &_jac : 0); in Rodrigues()