Hi!<br><br>I&#39;m trying to create a PointSet type with the following code:<br><br>import itk<br>pixelType = itk.US<br>dimension = 3<br>PointSetType = itk.PointSet[pixelType, dimension]<br><br>But I get the following error:<br>
<br>Traceback (most recent call last):<br>  File &quot;PointSet1.py&quot;, line 53, in &lt;module&gt;<br>    PointSetType = itk.PointSet[pixelType, dimension]<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: &#39;itkTemplate : No template (&lt;itkCType unsigned short&gt;, 3) for the itk::PointSet class&#39;<br>
<br>Looking at WrapITK/lib/itkPointSet.py, there are definitions like  itkPointSetD3D:<br>   def __repr__(self):<br>        return &quot;&lt;C itk::PointSet&lt;(double,3u,itk::DefaultDynamicMeshTraits&lt;(double,3u,3u,double,float,double)&gt;)&gt; instance at %s&gt;&quot; % (self.this,)<br>
... but I can&#39;t figure out how to template them .<br><br>I&#39;m using ubuntu + <a href="http://paulnovo.org">paulnovo.org</a> packages with WrapITK.<br><br>Best regards,<br>Carlos<br>