23 #include "pybind11/pybind11.h"
29 namespace py = pybind11;
30 using namespace pybind11::literals;
37 py::module mod(
"transform");
40 py::class_<BaseTransform, std::shared_ptr<BaseTransform>> cls(mod,
"BaseTransform");
43 cls.def(
"__call__", &BaseTransform::operator(),
"inputCatalog"_a,
"outputCatalog"_a,
"wcs"_a,
"calib"_a);
PYBIND11_PLUGIN(algorithm)