This evaluates the error term and additionally computes the Jacobians.
| 62 | |
| 63 | // This evaluates the error term and additionally computes the Jacobians. |
| 64 | bool DepthError::Evaluate(double const* const* parameters, double* residuals, double** jacobians) const { |
| 65 | return EvaluateWithMinimalJacobians(parameters, residuals, jacobians, NULL); |
| 66 | } |
| 67 | |
| 68 | // This evaluates the error term and additionally computes |
| 69 | // the Jacobians in the minimal internal representation. |
nothing calls this directly
no outgoing calls
no test coverage detected