| 185 | } |
| 186 | |
| 187 | void FactorGraphStructure::getErrorInputSize(const FactorID &Factor, int &ResidualSize) const |
| 188 | { |
| 189 | ceres::ResidualBlockId ID; |
| 190 | this->getResidualID(Factor, ID); |
| 191 | ResidualSize = _Factors.at(ID).ErrorInputSize; |
| 192 | } |
| 193 | |
| 194 | void FactorGraphStructure::getErrorOutputSize(const FactorID &Factor, int &ResidualSize) const |
| 195 | { |
no test coverage detected