| 14 | namespace poselib { |
| 15 | |
| 16 | py::dict RansacOptions_wrapper(py::dict overwrite) { |
| 17 | RansacOptions opt; |
| 18 | update_ransac_options(overwrite, opt); |
| 19 | py::dict result; |
| 20 | write_to_dict(opt, result); |
| 21 | return result; |
| 22 | } |
| 23 | |
| 24 | py::dict BundleOptions_wrapper(py::dict overwrite) { |
| 25 | BundleOptions opt; |
nothing calls this directly
no test coverage detected