| 192 | } |
| 193 | |
| 194 | void FactorGraphStructure::getErrorOutputSize(const FactorID &Factor, int &ResidualSize) const |
| 195 | { |
| 196 | ceres::ResidualBlockId ID; |
| 197 | this->getResidualID(Factor, ID); |
| 198 | ResidualSize = _Factors.at(ID).ErrorOutputSize; |
| 199 | } |
| 200 | |
| 201 | void FactorGraphStructure::getFactorIDs(const FactorType Type, std::vector<FactorID> &Factors) const |
| 202 | { |
no test coverage detected