Hi all.<br><br>I would like to instantiate a PointsContainer for a static PointSet. There seems to be no such class in Python wrapping, but according<br>to the documentation, it wraps as VectorContainer templated over the PointType.<br>
<br>dim = 3<br>pixelType = itk.D<br><br>pointType = itk.Point[itk.D , dim]<br>container = itk.VectorContainer[pointType]()<br><br>Traceback (most recent call last):<br>  File &quot;&lt;pyshell#5&gt;&quot;, line 1, in &lt;module&gt;<br>
    cont = itk.VectorContainer[pointType]()<br>  File &quot;/usr/lib/WrapITK/Python/itkTemplate.py&quot;, line 215, in __getitem__<br>    raise KeyError, &#39;itkTemplate : No template %s for the %s class&#39; % (str(parameters), self.__name__)<br>
KeyError: &quot;itkTemplate : No template [&lt;class &#39;itkPoint.itkPointD3&#39;&gt;] for the itk::VectorContainer class&quot;<br><br>How can such container be instantiated?<br><br>Best regards,<br>Carlos<br><br>