错误 C2780 “bool RotationResidual::operator ()(const T *const ,const T *const ,const T *const ,const T *const ,const T *const ,const T *const ,const T *const ,T *) const”: 应输入 8 个参数,却提供了 7 个 CailbratModelAnalyze
时间: 2023-07-23 11:55:37 浏览: 82
牛客 – 奇怪的背包问题增加了(贪心)
这是一个编译错误,提示你的 `RotationResidual` 类的 `operator()` 函数需要输入 8 个参数,但你只提供了 7 个参数。你需要检查一下你的代码,看看是不是在调用 `RotationResidual` 的 `operator()` 函数时漏掉了一个参数。确认参数后再重新编译代码即可。
阅读全文