Open millionsofluo opened 5 years ago
Hi,
Same problem here! This would be incredible useful.
The std::multimap<uint32_t, uint32_t>
type would need to be explicitly added to pclpy/src/vector_classes.hpp
it's not being compiled currently. And a quick search for multimap in pybind11's documentation doesn't return anything... so that could be an issue as well.
So there is no way to integrate this anytime soon?
The
std::multimap<uint32_t, uint32_t>
type would need to be explicitly added topclpy/src/vector_classes.hpp
it's not being compiled currently. And a quick search for multimap in pybind11's documentation doesn't return anything... so that could be an issue as well.
Thank you. I'll try.
Hi,
how to get
std::multimap<uint32_t, uint32_t> supervoxel_adjacency
data type input supervox.getSupervoxelAdjacency()C++ code:
std::multimap<uint32_t, uint32_t> supervoxel_adjacency;
super.getSupervoxelAdjacency(supervoxel_adjacency);
question: TypeError: getSupervoxelAdjacency(): incompatible function arguments. The following argument types are supported:
c++
my python code
please help Thanks!