Hi,<br><br>I&#39;ve got a watershed filtered image processed by a colormapper. So it&#39;s an image of type:<br><br>    typedef itk::RGBPixel&lt;short&gt;   RGBPixelType;<br>    typedef itk::Image&lt;RGBPixelType, 2&gt;    RGBImageType;<br>
<br>Now I want to filter that image with a connected threshold filter, because I need it this way.<br>But ConnectedThresholdImageFilter can&#39;t process such RGB images. <br>I tryed to convert the image into a short type by using CastImageFilter, too.<br>
But I always get:<br><br>    error C2440: &#39;static_cast&#39; : cannot convert from &#39;itk::RGBPixel&lt;TComponent&gt;&#39; to &#39;short&#39;<br><br>So how can I cast from RGB to short? Or how to filter a RGB image with a connected threshold filter?<br>
<br><br>Michael<br><br>