I have a couple of helper functions here and here, which deal with std::vector<itk::Image<X,Dim>::Pointer>, as input argument in the first case, and as an output for the later.
I have an usable python module (pip install itk-isotropicwavelets), but is not fully wrapping the external module. When using those classes I get a few issues involving this unwrapped vector:
-
swig/python detected a memory leak of type 'std::vector< itkImageCF2_Pointer,std::allocator< itkImageCF2_Pointer > > *', no destructor found.when using the first case withwaveletForward.GetOutputs() -
The swig objects are non-mutable from python.
-
I cannot generate a new swig-object from python to use it as input for
waveletInverse.GetInputs(a_vector_of_image_pointers)
I have no much knowledge about swig, but I have seen there are different types in itk.vector, such as itk.vector.itkStatisticalLabelObjectUL2, and they seem generated in Wrapping/WrapITKTypes.
Is it possible to modify or append types from an external module? Is there an existing wrapped type for std::vector of ImagePointers?
Thanks!