28 template<
size_t D,
size_t ZDim>
32 typedef Eigen::Matrix<double, ZDim, D> MatrixZD;
33 typedef std::pair<Key, Matrix> KeyMatrix;
43 const SharedDiagonal& model = SharedDiagonal())
45 Matrix zeroMatrix = Matrix::Zero(0, D);
46 Vector zeroVector = Vector::Zero(0);
47 std::vector<KeyMatrix> QF;
48 QF.reserve(keys.size());
49 for(
const Key& key: keys)
50 QF.push_back(KeyMatrix(key, zeroMatrix));
66 const std::vector<MatrixZD, Eigen::aligned_allocator<MatrixZD> >& Fblocks,
67 const Matrix& Enull,
const Vector& b,
68 const SharedDiagonal& model = SharedDiagonal())
70 size_t numKeys = Enull.rows() / ZDim;
71 size_t m2 = ZDim * numKeys - 3;
77 std::vector<KeyMatrix> QF;
79 for (
size_t k = 0; k < Fblocks.size(); ++k) {
82 key, (Enull.transpose()).block(0, ZDim * k, m2, ZDim) * Fblocks[k]);
JacobianFactorSVD(const KeyVector &keys, const SharedDiagonal &model=SharedDiagonal())
Empty constructor with keys.
Definition: JacobianFactorSVD.h:42
JacobianFactorSVD()
Default constructor.
Definition: JacobianFactorSVD.h:38
Definition: JacobianFactorSVD.h:29
void fillTerms(const TERMS &terms, const Vector &b, const SharedDiagonal &noiseModel)
Internal function to fill blocks and set dimensions.
Definition: JacobianFactor-inl.h:60
JacobianFactor class with fixed sized blcoks.
JacobianFactorSVD(const KeyVector &keys, const std::vector< MatrixZD, Eigen::aligned_allocator< MatrixZD > > &Fblocks, const Matrix &Enull, const Vector &b, const SharedDiagonal &model=SharedDiagonal())
Construct a new JacobianFactorSVD object, createing a reduced-rank Jacobian factor on the CameraSet...
Definition: JacobianFactorSVD.h:64
Definition: chartTesting.h:28
Definition: RegularJacobianFactor.h:32
FastVector< Key > KeyVector
Define collection type once and for all - also used in wrappers.
Definition: Key.h:86
const KeyVector & keys() const
Access the factor's involved variable keys.
Definition: Factor.h:142
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:102