| 22 | } |
| 23 | |
| 24 | py::dict BundleOptions_wrapper(py::dict overwrite) { |
| 25 | BundleOptions opt; |
| 26 | update_bundle_options(overwrite, opt); |
| 27 | py::dict result; |
| 28 | write_to_dict(opt, result); |
| 29 | return result; |
| 30 | } |
| 31 | |
| 32 | std::vector<CameraPose> p3p_wrapper(const std::vector<Eigen::Vector3d> &x, const std::vector<Eigen::Vector3d> &X) { |
| 33 | std::vector<CameraPose> output; |
nothing calls this directly
no test coverage detected