我使用pybind11创建了以下类:
py::class_<Raster>(m, "Raster")
.def(py::init<double*, std::size_t, std::size_t, std::size_t, double, double, double>());
但是我不知道如何在Python中调用此构造函数。我看到Python期望在double *处使用浮点数,但我似乎无法调用它。
我已经尝试过ctypes.data_as(ctypes.POINTER(ctypes.c_double))
,但这不起作用...
编辑:
我从@Sergei答案中提取了答案。
py::class_<Raster>(m, "Raster", py::buffer_protocol())
.def("__init__", [](Raster& raster, py::array_t<double> buffer, double spacingX, double spacingY, double spacingZ) {
py::buffer_info info = buffer.request();
new (&raster) Raster3D(static_cast<double*>(info.ptr), info.shape[0], info.shape[1], info.shape[2], spacingX, spacingY, spacingZ);
})
答案 0 :(得分:2)
Pybind执行自动转换。当您绑定f(double *)
时,假定该参数是一个指向singe值的指针,而不是指向数组begin的指针,因为从python端获取此类输入是很不自然的。因此,pybind将使用此逻辑转换参数。
如果您需要将原始数组传递给c ++,请像here一样使用py::buffer
:
py::class_<Matrix>(m, "Matrix", py::buffer_protocol())
.def("__init__", [](Matrix &m, py::buffer b) {
typedef Eigen::Stride<Eigen::Dynamic, Eigen::Dynamic> Strides;
/* Request a buffer descriptor from Python */
py::buffer_info info = b.request();
/* Some sanity checks ... */
if (info.format != py::format_descriptor<Scalar>::format())
throw std::runtime_error("Incompatible format: expected a double array!");
if (info.ndim != 2)
throw std::runtime_error("Incompatible buffer dimension!");
auto strides = Strides(
info.strides[rowMajor ? 0 : 1] / (py::ssize_t)sizeof(Scalar),
info.strides[rowMajor ? 1 : 0] / (py::ssize_t)sizeof(Scalar));
auto map = Eigen::Map<Matrix, 0, Strides>(
static_cast<Scalar *>(info.ptr), info.shape[0], info.shape[1], strides);
new (&m) Matrix(map);
});
要使其工作,您需要传递遵循python缓冲区协议的类型。