<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:'times new roman', 'new york', times, serif;font-size:12pt"><div>Hi,</div><div>I managed to find the problem on my code involving LabelOverlayFiltering and was related to an other third party IO class that wrote to disc the resulting image.</div><div><br></div><div>However, I wanted to comment on this to avoid future misunderstanding. One of my doubts raised from the fact that the filter seems to add transparency and it still the resulting image is RGB and not RGBA. After discussing with the filter author (thanks alot for your help), this is the answer on that issue:</div><div><br></div><div><meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="font-family: arial, helvetica, sans-serif; font-size: 13px; ">The transparency is only for the overlay layer. The produced image is still 100%
 opaque.</span></div><div><span class="Apple-style-span" style="font-family: arial, helvetica, sans-serif; font-size: 13px; "><br></span></div><div><span class="Apple-style-span" style="font-family: arial, helvetica, sans-serif; font-size: 13px; ">Maria</span></div><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><br><div style="font-family:arial, helvetica, sans-serif;font-size:13px"><font size="2" face="Tahoma"><hr size="1"><b><span style="font-weight: bold;">De:</span></b> "insight-users-request@itk.org" &lt;insight-users-request@itk.org&gt;<br><b><span style="font-weight: bold;">Para:</span></b> insight-users@itk.org<br><b><span style="font-weight: bold;">Enviado:</span></b> mié,30 marzo, 2011 18:00<br><b><span style="font-weight: bold;">Asunto:</span></b> Insight-users Digest, Vol 83, Issue 56<br></font><br>Send Insight-users mailing list submissions to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:insight-users@itk.org"
 href="mailto:insight-users@itk.org">insight-users@itk.org</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>&nbsp;&nbsp;&nbsp; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>or, via email, send a message with subject or body 'help' to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:insight-users-request@itk.org" href="mailto:insight-users-request@itk.org">insight-users-request@itk.org</a><br><br>You can reach the person managing the list at<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:insight-users-owner@itk.org" href="mailto:insight-users-owner@itk.org">insight-users-owner@itk.org</a><br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of Insight-users digest..."<br><br><br>Today's Topics:<br><br>&nbsp;  1. Re: LabelShapeOpeningImageFilter Attribute input =?<br>&nbsp; &nbsp; &nbsp; (Richard Beare)<br>&nbsp;  2.
 Re: LabelShapeOpeningImageFilter Attribute input<br>&nbsp; &nbsp; &nbsp; (Ella Maria Kadas)<br>&nbsp;  3. Re: Possible bug in Label Overlay Filter (Ga?tan Lehmann)<br>&nbsp;  4. Re: LabelShapeOpeningImageFilter Attribute input (Ga?tan Lehmann)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Wed, 30 Mar 2011 23:03:14 +1100<br>From: Richard Beare &lt;<a ymailto="mailto:richard.beare@gmail.com" href="mailto:richard.beare@gmail.com">richard.beare@gmail.com</a>&gt;<br>Subject: Re: [Insight-users] LabelShapeOpeningImageFilter Attribute<br>&nbsp;&nbsp;&nbsp; input =?<br>To: Ella Maria Kadas &lt;<a ymailto="mailto:ella_kadas@yahoo.com" href="mailto:ella_kadas@yahoo.com">ella_kadas@yahoo.com</a>&gt;<br>Cc: "<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>" &lt;<a ymailto="mailto:insight-users@itk.org"
 href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;AANLkTi=<a ymailto="mailto:WeCa3nrZ1B0U2QP54Lsme3gryouXpe_g8EF6g@mail.gmail.com" href="mailto:WeCa3nrZ1B0U2QP54Lsme3gryouXpe_g8EF6g@mail.gmail.com">WeCa3nrZ1B0U2QP54Lsme3gryouXpe_g8EF6g@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset="utf-8"<br><br>There is a convenience class in the Review directory that is derived from<br>this contribution called itk::BinaryShapeOpeningImageFilter. This includes<br>all of the labelling and conversion to and from label maps. You just need to<br>call the SetAttribute and SetForegroundValue appropriately. It should work<br>fine for 3D. If you look inside that class you should also find the standard<br>combination of steps you need to go through to use the LabelMap filters.<br><br>On Wed, Mar 30, 2011 at 9:09 PM, Ella Maria Kadas &lt;<a ymailto="mailto:ella_kadas@yahoo.com"
 href="mailto:ella_kadas@yahoo.com">ella_kadas@yahoo.com</a>&gt;wrote:<br><br>&gt; Hi all,<br>&gt;<br>&gt;&nbsp; &nbsp;  I am trying to remove some objects from a 3D image that have a volume<br>&gt; lower then a specific value.<br>&gt;&nbsp; &nbsp; I tried to use the Label object representation and manipulation with<br>&gt; ITK that Gae ?tan Lehmann<br>&gt; implemented but i still don't know what that attribute parameter should<br>&gt; look like. (in the python example it looks a s it would be a char<br>&gt; size =<br>&gt; itk.ShapeOpeningLabelMapFilter[LabelMapType].New(stats,Attribute=?Size?,<br>&gt; Lambda=100)<br>&gt;&nbsp; I want to use the ShapeLabelObject, and it's attributes to do a<br>&gt; LabelShapeOpeningFilter.<br>&gt;&nbsp; As i was getting no result i tried to do it in 2D first.<br>&gt;&nbsp; This is my code:<br>&gt; First i use the ConnectedComponentImageFilter, then<br>&gt; RelabelComponentImageFilter and create a ShapeLabelMap from the
 relabel's<br>&gt; output.<br>&gt;<br>&gt; typedef unsigned long LabelType;<br>&gt;<br>&gt;&nbsp;  typedef itk::ShapeLabelObject&lt; LabelType, dim &gt; LabelObjectType;<br>&gt;<br>&gt;&nbsp;  typedef itk::LabelMap&lt; LabelObjectType &gt; LabelMapType;<br>&gt;<br>&gt;<br>&gt;<br>&gt;&nbsp;  typedef itk::LabelImageToShapeLabelMapFilter&lt; LabelImageType,<br>&gt; LabelMapType &gt; ConverterType;<br>&gt;<br>&gt;&nbsp;  ConverterType::Pointer converter = ConverterType::New();<br>&gt;<br>&gt;&nbsp;  converter-&gt;SetInput( relabel-&gt;GetOutput() );<br>&gt;<br>&gt;&nbsp;  converter-&gt;Update();<br>&gt;<br>&gt; !!!! Why does it not work if i use this part of code from the journal<br>&gt;<br>&gt; /*<br>&gt;<br>&gt; and valuate the attributes with the dedicated filter: ShapeLabelMapFilter<br>&gt;<br>&gt; typedef itk::ShapeLabelMapFilter&lt; LabelMapType &gt; ShapeFilterType;<br>&gt; ShapeFilterType::Pointer shape = ShapeFilterType::New();
 shape-&gt;SetInput(<br>&gt; converter-&gt;GetOutput() );<br>&gt;<br>&gt; update the shape filter, so its output will be up to date<br>&gt;<br>&gt; shape-&gt;Update();<br>&gt;<br>&gt; */<br>&gt;<br>&gt;<br>&gt;&nbsp;  LabelMapType::Pointer labelMap = converter-&gt;GetOutput();<br>&gt;<br>&gt; std::cout&lt;&lt;"nr of label<br>&gt; objects"&lt;&lt;labelMap-&gt;GetNumberOfLabelObjects()&lt;&lt;std::endl;<br>&gt;<br>&gt;<br>&gt;&nbsp;  for( unsigned int label=1; label&lt;=labelMap-&gt;GetNumberOfLabelObjects();<br>&gt; label++ )<br>&gt;<br>&gt;&nbsp; &nbsp;  {<br>&gt;<br>&gt;<br>&gt;<br>&gt;&nbsp; &nbsp;  const LabelObjectType * labelObject = labelMap-&gt;GetLabelObject( label<br>&gt; );<br>&gt;<br>&gt;&nbsp; &nbsp;  std::cout &lt;&lt; label &lt;&lt; "\t" &lt;&lt; labelObject-&gt;GetPhysicalSize() &lt;&lt; "\t" &lt;&lt;<br>&gt; labelObject-&gt;GetCentroid() &lt;&lt; std::endl;<br>&gt;<br>&gt;&nbsp; &nbsp;  }<br>&gt;<br>&gt;<br>&gt;&nbsp; typedef
 itk::LabelShapeOpeningImageFilter&lt; LabelImageType &gt;<br>&gt; LabelOpeningType;<br>&gt;<br>&gt; LabelOpeningType::Pointer opening = LabelOpeningType::New();<br>&gt;<br>&gt; opening-&gt;SetInput( relabel-&gt;GetOutput());<br>&gt;<br>&gt; opening-&gt;SetBackgroundValue(0);<br>&gt;<br>&gt; opening-&gt;SetLambda( 100 );<br>&gt;<br>&gt; opening-&gt;SetReverseOrdering( false );<br>&gt;<br>&gt; //NO IDEA About the Attribute<br>&gt;<br>&gt; //I thought it should be the labelMap-&gt;Size()) should be as attribute<br>&gt;<br>&gt; opening-&gt;SetAttribute("PERIMETER");<br>&gt;<br>&gt; itk::SimpleFilterWatcher watcher(opening, "filter");<br>&gt;<br>&gt; Then i would like to get back the binary image and see it but i can't get<br>&gt; the proper image types as input to LabelMapToLabelIamgeFilter....So the<br>&gt; commented part is not working<br>&gt;<br>&gt;<br>&gt;&nbsp; /*typedef itk::LabelMapToLabelImageFilter&lt; LabelImageType, LabelImageType<br>&gt; &gt;
 L2IType;<br>&gt;<br>&gt; L2IType::Pointer l2i = L2IType::New();<br>&gt;<br>&gt; l2i-&gt;SetInput( opening-&gt;GetOutput() );<br>&gt;<br>&gt;&nbsp; typedef itk::ImageFileWriter&lt; LabelImageType &gt; WriterType;<br>&gt;<br>&gt; WriterType::Pointer writer = WriterType::New();<br>&gt;<br>&gt; writer-&gt;SetInput( l2i-&gt;GetOutput() );<br>&gt;<br>&gt; writer-&gt;SetFileName( "/Users/ellaK/Documents/Morphology/Opening.gipl");<br>&gt;<br>&gt; writer-&gt;Update();*/<br>&gt;<br>&gt; std::getchar();<br>&gt;<br>&gt;<br>&gt;<br>&gt; Maybe i am doing this the wrong way, and i can't use it for 3D images.<br>&gt; If anybody already already worked with this filters please give me a hint<br>&gt; to what i am doing wrong.<br>&gt; Thanks,<br>&gt;&nbsp; &nbsp; Ella<br>&gt;<br>&gt; _____________________________________<br><span>&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><br>&gt;<br>&gt; Visit other Kitware open-source
 projects at<br>&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>&gt;<br>&gt; Kitware offers ITK Training Courses, for more information visit:<br>&gt; <a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>&gt;<br>&gt; Please keep messages on-topic and check the ITK FAQ at:<br>&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>&gt;<br>&gt; Follow this link to subscribe/unsubscribe:<br>&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>&gt;<br>&gt;<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20110330/26682abb/attachment-0001.htm"
 target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20110330/26682abb/attachment-0001.htm</a>&gt;<br><br>------------------------------<br><br>Message: 2<br>Date: Wed, 30 Mar 2011 13:51:23 +0100 (BST)<br>From: Ella Maria Kadas &lt;<a ymailto="mailto:ella_kadas@yahoo.com" href="mailto:ella_kadas@yahoo.com">ella_kadas@yahoo.com</a>&gt;<br>Subject: Re: [Insight-users] LabelShapeOpeningImageFilter Attribute<br>&nbsp;&nbsp;&nbsp; input<br>To: <a ymailto="mailto:Richard.Beare@ieee.org" href="mailto:Richard.Beare@ieee.org">Richard.Beare@ieee.org</a><br>Cc: "<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>" &lt;<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>Message-ID: &lt;<a ymailto="mailto:259184.90324.qm@web29617.mail.ird.yahoo.com"
 href="mailto:259184.90324.qm@web29617.mail.ird.yahoo.com">259184.90324.qm@web29617.mail.ird.yahoo.com</a>&gt;<br>Content-Type: text/plain; charset="utf-8"<br><br>Hi,<br>?Yes i already tried that and in the by default the Attribute value is "Size", which as far as i understood is the Perimeter of the shape that has a specific label (length-coding)-don't know how that applies to 3D images, but trying to apply the itkBinaryShapeOpeningImageFilter i get the following error (my input image is a float one).Start BinaryShapeOpeningImageFilter "filter" BinaryShapeOpeningImageFilter (0x402d160)<br>? RTTI typeinfo: ? itk::BinaryShapeOpeningImageFilter&lt;itk::Image&lt;float, 3u&gt; &gt;<br>? Reference Count: 3<br>? Modified Time: 1082<br>? Debug: Off<br>? Observers:?<br>? ? StartEvent(SimpleMemberCommand)<br>? ? EndEvent(SimpleMemberCommand)<br>? ? ProgressEvent(SimpleMemberCommand)<br>? ? IterationEvent(SimpleMemberCommand)<br>? ?
 AbortEvent(SimpleMemberCommand)<br>? Number Of Required Inputs: 1<br>? Number Of Required Outputs: 1<br>? Number Of Threads: 8<br>? ReleaseDataFlag: Off<br>? ReleaseDataBeforeUpdateFlag: Off<br>? Input 0: (0x402cde0)<br>? Output 0: (0x402d380)<br>? AbortGenerateData: Off<br>? Progress: 0<br>? Multithreader:?<br>? ? RTTI typeinfo: ? itk::MultiThreader<br>? ? Reference Count: 1<br>? ? Modified Time: 1069<br>? ? Debug: Off<br>? ? Observers:?<br>? ? ? none<br>? ? Thread Count: 8<br>? ? Global Maximum Number Of Threads: 128<br>? ? Global Default Number Of Threads: 8<br>? FullyConnected: 0<br>? BackgroundValue: 0<br>? ForegroundValue: 255<br>? Lambda: 500<br>? ReverseOrdering: 0<br>? Attribute: Size (0)<br>Progress? | 0 | 0.00292969 | 0.00585938 | 0.00878906 | 0.0117188 | 0.0146484 | 0.0175781 | 0.0205078 | 0.0234375 | 0.0263672<br>?| 0.0292969 | 0.0322266 | 0.0351562 | 0.0380859 | 0.0410156 | 0.0439453 | 0.046875 | 0.0498047 | 0.0527344 | 0.0556641<br>?|
 0.0585938 | 0.0615234 | 0.0644531 | 0.0673828 | 0.0703125 | 0.0732422 | 0.0761719 | 0.0791016 | 0.0820312 | 0.0849609<br>?| 0.0878906 | 0.0908203 | 0.09375 | 0.0966797 | 0.0996094 | 0.102539 | 0.105469 | 0.108398 | 0.111328 | 0.114258<br>?| 0.117188 | 0.120117 | 0.123047 | 0.125977 | 0.128906 | 0.131836 | 0.134766 | 0.137695 | 0.140625 | 0.143555<br>?| 0.146484 | 0.149414 | 0.152344 | 0.155273 | 0.158203 | 0.161133 | 0.164062 | 0.166992 | 0.169922 | 0.172852<br>?| 0.175781 | 0.178711 | 0.181641 | 0.18457 | 0.1875 | 0.19043 | 0.193359 | 0.196289 | 0.199219 | 0.202148<br>?| 0.205078 | 0.208008 | 0.210938 | 0.213867 | 0.216797 | 0.219727 | 0.222656 | 0.225586 | 0.228516 | 0.231445<br>?| 0.234375 | 0.237305 | 0.240234 | 0.243164 | 0.246094 | 0.249023 | 0.251953 | 0.254883 | 0.257812 | 0.260742<br>?| 0.263672 | 0.266602 | 0.269531 | 0.272461 | 0.275391 | 0.27832 | 0.28125 | 0.28418 | 0.287109 | 0.290039<br>?| 0.292969 | 0.295898 |
 0.298828Brain(6480,0xa0047540) malloc: *** mmap(size=4263636992) failed (error code=12)<br>*** error: can't allocate region<br>*** set a breakpoint in malloc_error_break to debug<br>?| 0.3<br>--- Richard Beare &lt;<a ymailto="mailto:richard.beare@gmail.com" href="mailto:richard.beare@gmail.com">richard.beare@gmail.com</a>&gt; schrieb am Mi, 30.3.2011:<br><br>Von: Richard Beare &lt;<a ymailto="mailto:richard.beare@gmail.com" href="mailto:richard.beare@gmail.com">richard.beare@gmail.com</a>&gt;<br>Betreff: Re: [Insight-users] LabelShapeOpeningImageFilter Attribute input<br>An: "Ella Maria Kadas" &lt;<a ymailto="mailto:ella_kadas@yahoo.com" href="mailto:ella_kadas@yahoo.com">ella_kadas@yahoo.com</a>&gt;<br>CC: "<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>" &lt;<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>Datum: Mittwoch, 30. M?rz,
 2011 15:03 Uhr<br><br>There is a convenience class in the Review directory that is derived from this contribution called itk::BinaryShapeOpeningImageFilter. This includes all of the labelling and conversion to and from label maps. You just need to call the SetAttribute and SetForegroundValue appropriately. It should work fine for 3D. If you look inside that class you should also find the standard combination of steps you need to go through to use the LabelMap filters.<br><br><br>On Wed, Mar 30, 2011 at 9:09 PM, Ella Maria Kadas &lt;<a ymailto="mailto:ella_kadas@yahoo.com" href="mailto:ella_kadas@yahoo.com">ella_kadas@yahoo.com</a>&gt; wrote:<br><br>Hi all,<br>?? ?I am trying to remove some objects from a 3D image that have a volume lower then a specific value.<br>?? I tried to use the?Label object representation and manipulation with ITK that?Gae ?tan Lehmann<br>implemented but i still don't know what that attribute parameter should look like. (in the
 python example it looks a s it would be a<br> char?size = itk.ShapeOpeningLabelMapFilter[LabelMapType].New(stats,Attribute=?Size?, Lambda=100)?<br>?I want to use the ShapeLabelObject, and it's attributes to do a LabelShapeOpeningFilter.?As i was getting no result i tried to do it in 2D first.<br>?This is my code:First i use the ConnectedComponentImageFilter, then RelabelComponentImageFilter and create a ShapeLabelMap from the relabel's output.<br><br><br>typedef unsigned long LabelType;<br>? typedef itk::ShapeLabelObject&lt; LabelType, dim &gt; LabelObjectType;<br>? typedef itk::LabelMap&lt; LabelObjectType &gt; LabelMapType;<br><br><br><br><br>? typedef itk::LabelImageToShapeLabelMapFilter&lt; LabelImageType, LabelMapType &gt; ConverterType;<br>? ConverterType::Pointer converter = ConverterType::New();<br>? converter-&gt;SetInput( relabel-&gt;GetOutput() );<br>? converter-&gt;Update();<br>!!!! Why does it not work if i use this part of code from the
 journal&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; /*and valuate the attributes with the dedicated filter: ShapeLabelMapFilter<br><br>typedef itk::ShapeLabelMapFilter&lt; LabelMapType &gt; ShapeFilterType; ShapeFilterType::Pointer shape = ShapeFilterType::New(); shape-&gt;SetInput( converter-&gt;GetOutput() );<br><br>update the shape filter, so its output will be up to date<br>shape-&gt;Update();<br>*/<br>??LabelMapType::Pointer labelMap = converter-&gt;GetOutput();<br><br>std::cout&lt;&lt;"nr of label objects"&lt;&lt;labelMap-&gt;GetNumberOfLabelObjects()&lt;&lt;std::endl;<br><br><br>? for( unsigned int label=1; label&lt;=labelMap-&gt;GetNumberOfLabelObjects(); label++ )<br>? ? {<br>? ??<br>? ? const LabelObjectType * labelObject = labelMap-&gt;GetLabelObject( label );<br>? ? std::cout &lt;&lt; label &lt;&lt; "\t" &lt;&lt; labelObject-&gt;GetPhysicalSize() &lt;&lt; "\t" &lt;&lt; labelObject-&gt;GetCentroid() &lt;&lt; std::endl;<br><br>? ?
 }<br><br><br>&nbsp;&nbsp;&nbsp; typedef itk::LabelShapeOpeningImageFilter&lt; LabelImageType &gt; LabelOpeningType;<br><br>&nbsp;&nbsp;&nbsp; LabelOpeningType::Pointer opening = LabelOpeningType::New();<br><br>&nbsp;&nbsp;&nbsp; opening-&gt;SetInput( relabel-&gt;GetOutput());<br>&nbsp;&nbsp;&nbsp; opening-&gt;SetBackgroundValue(0);<br>&nbsp;&nbsp;&nbsp; opening-&gt;SetLambda( 100 );<br>&nbsp;&nbsp;&nbsp; opening-&gt;SetReverseOrdering( false );<br>//NO IDEA About the Attribute//I thought it should be the labelMap-&gt;Size()) should be as attribute<br><br>&nbsp;&nbsp;&nbsp; opening-&gt;SetAttribute("PERIMETER");<br>&nbsp;&nbsp;&nbsp; itk::SimpleFilterWatcher watcher(opening, "filter");<br><br>&nbsp;&nbsp;&nbsp; <br>Then i would like to get back the binary image and see it but i can't get the proper image types as input to LabelMapToLabelIamgeFilter....So the commented part is not working<br><br><br>&nbsp;&nbsp;&nbsp; /*typedef
 itk::LabelMapToLabelImageFilter&lt; LabelImageType, LabelImageType &gt; L2IType;?<br><br>&nbsp;&nbsp;&nbsp; L2IType::Pointer l2i = L2IType::New();?<br>&nbsp;&nbsp;&nbsp; l2i-&gt;SetInput( opening-&gt;GetOutput() );<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; typedef itk::ImageFileWriter&lt; LabelImageType &gt; WriterType;<br>&nbsp;&nbsp;&nbsp; WriterType::Pointer writer = WriterType::New();<br>&nbsp;&nbsp;&nbsp; writer-&gt;SetInput( l2i-&gt;GetOutput() );<br>&nbsp;&nbsp;&nbsp; writer-&gt;SetFileName( "/Users/ellaK/Documents/Morphology/Opening.gipl");<br>&nbsp;&nbsp;&nbsp; writer-&gt;Update();*/<br>&nbsp;&nbsp;&nbsp; std::getchar();<br><br><br><br>Maybe i am doing this the wrong way, and i can't use it for 3D images.<br>If anybody already already worked with this filters please give me a hint to what i am doing wrong.Thanks,?? Ella<br><br>_____________________________________<br><br><span>Powered by <a target="_blank"
 href="http://www.kitware.com">www.kitware.com</a></span><br><br><br><br>Visit other Kitware open-source projects at<br><br><a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br><br><br><br>Kitware offers ITK Training Courses, for more information visit:<br><br><a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br><br><br><br>Please keep messages on-topic and check the ITK FAQ at:<br><br><a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br><br><br><br>Follow this link to subscribe/unsubscribe:<br><br><a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br><br><br><br><br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: &lt;<a
 href="http://www.itk.org/pipermail/insight-users/attachments/20110330/c907c66f/attachment-0001.htm" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20110330/c907c66f/attachment-0001.htm</a>&gt;<br><br>------------------------------<br><br>Message: 3<br>Date: Wed, 30 Mar 2011 16:32:07 +0200<br>From: Ga?tan Lehmann &lt;<a ymailto="mailto:gaetan.lehmann@jouy.inra.fr" href="mailto:gaetan.lehmann@jouy.inra.fr">gaetan.lehmann@jouy.inra.fr</a>&gt;<br>Subject: Re: [Insight-users] Possible bug in Label Overlay Filter<br>To: Maria Alejandra Zuluaga Valencia &lt;<a ymailto="mailto:mariazulv@yahoo.es" href="mailto:mariazulv@yahoo.es">mariazulv@yahoo.es</a>&gt;<br>Cc: ITK list &lt;<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>Message-ID: &lt;<a ymailto="mailto:15A0F6C9-5172-4A2F-9E97-4AEE690AF31B@jouy.inra.fr"
 href="mailto:15A0F6C9-5172-4A2F-9E97-4AEE690AF31B@jouy.inra.fr">15A0F6C9-5172-4A2F-9E97-4AEE690AF31B@jouy.inra.fr</a>&gt;<br>Content-Type: text/plain; charset="iso-8859-1"; Format="flowed";<br>&nbsp;&nbsp;&nbsp; DelSp="yes"<br><br><br>Hi,<br><br>Could you provide a small code to reproduce that problem?<br><br>Thanks,<br><br>Ga?tan<br><br><br>Le 28 mars 11 ? 16:48, Maria Alejandra Zuluaga Valencia a ?crit :<br><br>&gt; Hello again,<br>&gt;<br>&gt; Earlier this morning I posted a message on problems with&nbsp; <br>&gt; ExtractImageFilter (which I put at the end of the message for follow- <br>&gt; up purposes).<br>&gt; I've performed several tests to find the cause of my error. Since,&nbsp; <br>&gt; the input images I was using came from&nbsp; itkLabelOverlayImageFilter,&nbsp; <br>&gt; right now I am under the hypothesis that the latter is the one that&nbsp; <br>&gt; really causes the problem when 3D images are used.<br>&gt;<br>&gt; In my pipeline I am
 able of creating a 3D RGB image (mhd/raw format)&nbsp; <br>&gt; and I can visualize it without any problem. However, once I try to&nbsp; <br>&gt; do something with this resulting image I get problems.<br>&gt;<br>&gt; At the beginning I was using ExtractImageFilter to obtain a single&nbsp; <br>&gt; slice from the overlaid image. Since it did not work, I performed&nbsp; <br>&gt; the simplest operation which consisted in reading&nbsp; from disk the 3D&nbsp; <br>&gt; RGB image and then writing it again. In every case, the resulting&nbsp; <br>&gt; image contains only noise. If I do this same test with a 2D overlaid&nbsp; <br>&gt; image, it works perfectly.<br>&gt;<br>&gt; Has anyone experienced the same problem? is there anyway to solve it?<br>&gt;<br>&gt; thanks in advance,<br>&gt;<br>&gt; Maria A. Zuluaga<br>&gt;<br>&gt; Maybe there are some problems regarding R G B channel interleaving/ <br>&gt; separation?<br>&gt;<br>&gt; HTH<br>&gt;<br>&gt; On Mon, Mar
 28, 2011 at 12:05, Maria Alejandra Zuluaga Valencia &lt;<a ymailto="mailto:mariazulv@yahoo.es" href="mailto:mariazulv@yahoo.es">mariazulv@yahoo.es</a> <br>&gt; &gt; wrote:<br>&gt; Hi,<br>&gt; I am using the ExtractImageFilter to obtain a 2D slice from a 3D&nbsp; <br>&gt; volume. I used the example from the user's guide and it works OK.&nbsp; <br>&gt; However, when I change the pixel type to RGB (I want to do this for&nbsp; <br>&gt; some overlay images) it fails. The resulting slice is completely&nbsp; <br>&gt; noisy. Any idea?<br>&gt;<br>&gt; Thanks in advance,<br>&gt;<br>&gt; Maria A. Zuluaga<br>&gt;<br>&gt;<br>&gt; _____________________________________<br><span>&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><br>&gt;<br>&gt; Visit other Kitware open-source projects at<br>&gt; <a href="http://www.kitware.com/opensource/opensource.html"
 target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>&gt;<br>&gt; Kitware offers ITK Training Courses, for more information visit:<br>&gt; <a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>&gt;<br>&gt; Please keep messages on-topic and check the ITK FAQ at:<br>&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>&gt;<br>&gt; Follow this link to subscribe/unsubscribe:<br>&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>&gt;<br>&gt;<br>&gt;<br>&gt; _____________________________________<br><span>&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><br>&gt;<br>&gt; Visit other Kitware open-source projects at<br>&gt; <a href="http://www.kitware.com/opensource/opensource.html"
 target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>&gt;<br>&gt; Kitware offers ITK Training Courses, for more information visit:<br>&gt; <a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>&gt;<br>&gt; Please keep messages on-topic and check the ITK FAQ at:<br>&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>&gt;<br>&gt; Follow this link to subscribe/unsubscribe:<br>&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br><br>-- <br>Ga?tan Lehmann<br>Biologie du D?veloppement et de la Reproduction<br>INRA de Jouy-en-Josas (France)<br>tel: +33 1 34 65 29 66&nbsp; &nbsp; fax: 01 34 65 29 09<br><a href="http://voxel.jouy.inra.fr" target="_blank">http://voxel.jouy.inra.fr</a>&nbsp; <a href="http://www.itk.org"
 target="_blank">http://www.itk.org</a><br><a href="http://www.mandriva.org" target="_blank">http://www.mandriva.org</a>&nbsp; <a href="http://www.bepo.fr" target="_blank">http://www.bepo.fr</a><br><br>-------------- next part --------------<br>A non-text attachment was scrubbed...<br>Name: PGP.sig<br>Type: application/pgp-signature<br>Size: 203 bytes<br>Desc: Ceci est une signature ?lectronique PGP<br>URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20110330/b1c65619/attachment-0001.pgp" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20110330/b1c65619/attachment-0001.pgp</a>&gt;<br><br>------------------------------<br><br>Message: 4<br>Date: Wed, 30 Mar 2011 16:44:42 +0200<br>From: Ga?tan Lehmann &lt;<a ymailto="mailto:gaetan.lehmann@jouy.inra.fr" href="mailto:gaetan.lehmann@jouy.inra.fr">gaetan.lehmann@jouy.inra.fr</a>&gt;<br>Subject: Re: [Insight-users] LabelShapeOpeningImageFilter
 Attribute<br>&nbsp;&nbsp;&nbsp; input<br>To: Ella Maria Kadas &lt;<a ymailto="mailto:ella_kadas@yahoo.com" href="mailto:ella_kadas@yahoo.com">ella_kadas@yahoo.com</a>&gt;<br>Cc: "<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>" &lt;<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>Message-ID: &lt;<a ymailto="mailto:D1ABD4AA-848E-4EFA-9D10-B631159147C9@jouy.inra.fr" href="mailto:D1ABD4AA-848E-4EFA-9D10-B631159147C9@jouy.inra.fr">D1ABD4AA-848E-4EFA-9D10-B631159147C9@jouy.inra.fr</a>&gt;<br>Content-Type: text/plain; charset="utf-8"; Format="flowed";<br>&nbsp;&nbsp;&nbsp; DelSp="yes"<br><br>Hi,<br><br><br>Le 30 mars 11 ? 14:51, Ella Maria Kadas a ?crit :<br><br>&gt; Hi,<br>&gt;<br>&gt;&nbsp; Yes i already tried that and in the by default the Attribute value&nbsp; <br>&gt; is "Size", which as far as i understood is the Perimeter of the
 shape<br><br>This is the number of pixels in the object. It has been renamed in ITK&nbsp; <br>v4 in NumberOfPixels.<br><br>&gt; that has a specific label (length-coding)-don't know how that&nbsp; <br>&gt; applies to 3D images,<br><br>that's still the number of pixels independently of the image&nbsp; <br>dimension :-)<br><br>&gt; but trying to apply the itkBinaryShapeOpeningImageFilter i get the&nbsp; <br>&gt; following error (my input image is a float one).<br><br>Your image should have an integer pixel type. There is no point in&nbsp; <br>using that class with a real pixel type.<br>I'm not sure this is your problem, though. Can you provide a minimum&nbsp; <br>example so we can try to reproduce the problem?<br><br>Regards,<br><br>Ga?tan<br><br>&gt; Start BinaryShapeOpeningImageFilter "filter"&nbsp; <br>&gt; BinaryShapeOpeningImageFilter (0x402d160)<br>&gt;&nbsp;  RTTI typeinfo:&nbsp; &nbsp; <br>&gt;
 itk::BinaryShapeOpeningImageFilter&lt;itk::Image&lt;float, 3u&gt; &gt;<br>&gt;&nbsp;  Reference Count: 3<br>&gt;&nbsp;  Modified Time: 1082<br>&gt;&nbsp;  Debug: Off<br>&gt;&nbsp;  Observers:<br>&gt;&nbsp; &nbsp;  StartEvent(SimpleMemberCommand)<br>&gt;&nbsp; &nbsp;  EndEvent(SimpleMemberCommand)<br>&gt;&nbsp; &nbsp;  ProgressEvent(SimpleMemberCommand)<br>&gt;&nbsp; &nbsp;  IterationEvent(SimpleMemberCommand)<br>&gt;&nbsp; &nbsp;  AbortEvent(SimpleMemberCommand)<br>&gt;&nbsp;  Number Of Required Inputs: 1<br>&gt;&nbsp;  Number Of Required Outputs: 1<br>&gt;&nbsp;  Number Of Threads: 8<br>&gt;&nbsp;  ReleaseDataFlag: Off<br>&gt;&nbsp;  ReleaseDataBeforeUpdateFlag: Off<br>&gt;&nbsp;  Input 0: (0x402cde0)<br>&gt;&nbsp;  Output 0: (0x402d380)<br>&gt;&nbsp;  AbortGenerateData: Off<br>&gt;&nbsp;  Progress: 0<br>&gt;&nbsp;  Multithreader:<br>&gt;&nbsp; &nbsp;  RTTI typeinfo:&nbsp;  itk::MultiThreader<br>&gt;&nbsp; &nbsp;  Reference Count: 1<br>&gt;&nbsp;
 &nbsp;  Modified Time: 1069<br>&gt;&nbsp; &nbsp;  Debug: Off<br>&gt;&nbsp; &nbsp;  Observers:<br>&gt;&nbsp; &nbsp; &nbsp;  none<br>&gt;&nbsp; &nbsp;  Thread Count: 8<br>&gt;&nbsp; &nbsp;  Global Maximum Number Of Threads: 128<br>&gt;&nbsp; &nbsp;  Global Default Number Of Threads: 8<br>&gt;&nbsp;  FullyConnected: 0<br>&gt;&nbsp;  BackgroundValue: 0<br>&gt;&nbsp;  ForegroundValue: 255<br>&gt;&nbsp;  Lambda: 500<br>&gt;&nbsp;  ReverseOrdering: 0<br>&gt;&nbsp;  Attribute: Size (0)<br>&gt; Progress&nbsp; | 0 | 0.00292969 | 0.00585938 | 0.00878906 | 0.0117188 |&nbsp; <br>&gt; 0.0146484 | 0.0175781 | 0.0205078 | 0.0234375 | 0.0263672<br>&gt;&nbsp; | 0.0292969 | 0.0322266 | 0.0351562 | 0.0380859 | 0.0410156 |&nbsp; <br>&gt; 0.0439453 | 0.046875 | 0.0498047 | 0.0527344 | 0.0556641<br>&gt;&nbsp; | 0.0585938 | 0.0615234 | 0.0644531 | 0.0673828 | 0.0703125 |&nbsp; <br>&gt; 0.0732422 | 0.0761719 | 0.0791016 | 0.0820312 | 0.0849609<br>&gt;&nbsp; | 0.0878906 |
 0.0908203 | 0.09375 | 0.0966797 | 0.0996094 |&nbsp; <br>&gt; 0.102539 | 0.105469 | 0.108398 | 0.111328 | 0.114258<br>&gt;&nbsp; | 0.117188 | 0.120117 | 0.123047 | 0.125977 | 0.128906 | 0.131836 |&nbsp; <br>&gt; 0.134766 | 0.137695 | 0.140625 | 0.143555<br>&gt;&nbsp; | 0.146484 | 0.149414 | 0.152344 | 0.155273 | 0.158203 | 0.161133 |&nbsp; <br>&gt; 0.164062 | 0.166992 | 0.169922 | 0.172852<br>&gt;&nbsp; | 0.175781 | 0.178711 | 0.181641 | 0.18457 | 0.1875 | 0.19043 |&nbsp; <br>&gt; 0.193359 | 0.196289 | 0.199219 | 0.202148<br>&gt;&nbsp; | 0.205078 | 0.208008 | 0.210938 | 0.213867 | 0.216797 | 0.219727 |&nbsp; <br>&gt; 0.222656 | 0.225586 | 0.228516 | 0.231445<br>&gt;&nbsp; | 0.234375 | 0.237305 | 0.240234 | 0.243164 | 0.246094 | 0.249023 |&nbsp; <br>&gt; 0.251953 | 0.254883 | 0.257812 | 0.260742<br>&gt;&nbsp; | 0.263672 | 0.266602 | 0.269531 | 0.272461 | 0.275391 | 0.27832 |&nbsp; <br>&gt; 0.28125 | 0.28418 | 0.287109 | 0.290039<br>&gt;&nbsp; | 0.292969 |
 0.295898 | 0.298828Brain(6480,0xa0047540) malloc: ***&nbsp; <br>&gt; mmap(size=4263636992) failed (error code=12)<br>&gt; *** error: can't allocate region<br>&gt; *** set a breakpoint in malloc_error_break to debug<br>&gt;&nbsp; | 0.3<br>&gt;<br>&gt; --- Richard Beare &lt;<a ymailto="mailto:richard.beare@gmail.com" href="mailto:richard.beare@gmail.com">richard.beare@gmail.com</a>&gt; schrieb am Mi, 30.3.2011:<br>&gt;<br>&gt; Von: Richard Beare &lt;<a ymailto="mailto:richard.beare@gmail.com" href="mailto:richard.beare@gmail.com">richard.beare@gmail.com</a>&gt;<br>&gt; Betreff: Re: [Insight-users] LabelShapeOpeningImageFilter Attribute&nbsp; <br>&gt; input<br>&gt; An: "Ella Maria Kadas" &lt;<a ymailto="mailto:ella_kadas@yahoo.com" href="mailto:ella_kadas@yahoo.com">ella_kadas@yahoo.com</a>&gt;<br>&gt; CC: "<a ymailto="mailto:insight-users@itk.org" href="mailto:insight-users@itk.org">insight-users@itk.org</a>" &lt;<a ymailto="mailto:insight-users@itk.org"
 href="mailto:insight-users@itk.org">insight-users@itk.org</a>&gt;<br>&gt; Datum: Mittwoch, 30. M?rz, 2011 15:03 Uhr<br>&gt;<br>&gt; There is a convenience class in the Review directory that is derived&nbsp; <br>&gt; from this contribution called itk::BinaryShapeOpeningImageFilter.&nbsp; <br>&gt; This includes all of the labelling and conversion to and from label&nbsp; <br>&gt; maps. You just need to call the SetAttribute and SetForegroundValue&nbsp; <br>&gt; appropriately. It should work fine for 3D. If you look inside that&nbsp; <br>&gt; class you should also find the standard combination of steps you&nbsp; <br>&gt; need to go through to use the LabelMap filters.<br>&gt;<br>&gt; On Wed, Mar 30, 2011 at 9:09 PM, Ella Maria Kadas &lt;<a ymailto="mailto:ella_kadas@yahoo.com" href="mailto:ella_kadas@yahoo.com">ella_kadas@yahoo.com</a> <br>&gt; &gt; wrote:<br>&gt; Hi all,<br>&gt;<br>&gt;&nbsp; &nbsp;  I am trying to remove some objects from a 3D image that
 have a&nbsp; <br>&gt; volume lower then a specific value.<br>&gt;&nbsp; &nbsp; I tried to use the Label object representation and manipulation&nbsp; <br>&gt; with ITK that Gae ?tan Lehmann<br>&gt; implemented but i still don't know what that attribute parameter&nbsp; <br>&gt; should look like. (in the python example it looks a s it would be a&nbsp; <br>&gt; char<br>&gt; size =&nbsp; <br>&gt; itk <br>&gt; .ShapeOpeningLabelMapFilter <br>&gt; [LabelMapType].New(stats,Attribute=?Size?, Lambda=100)<br>&gt;&nbsp; I want to use the ShapeLabelObject, and it's attributes to do a&nbsp; <br>&gt; LabelShapeOpeningFilter.<br>&gt;&nbsp; As i was getting no result i tried to do it in 2D first.<br>&gt;&nbsp; This is my code:<br>&gt; First i use the ConnectedComponentImageFilter, then&nbsp; <br>&gt; RelabelComponentImageFilter and create a ShapeLabelMap from the&nbsp; <br>&gt; relabel's output.<br>&gt;<br>&gt; typedef unsigned long LabelType;<br>&gt;&nbsp;  typedef
 itk::ShapeLabelObject&lt; LabelType, dim &gt; LabelObjectType;<br>&gt;&nbsp;  typedef itk::LabelMap&lt; LabelObjectType &gt; LabelMapType;<br>&gt;<br>&gt;<br>&gt;&nbsp;  typedef itk::LabelImageToShapeLabelMapFilter&lt; LabelImageType,&nbsp; <br>&gt; LabelMapType &gt; ConverterType;<br>&gt;&nbsp;  ConverterType::Pointer converter = ConverterType::New();<br>&gt;&nbsp;  converter-&gt;SetInput( relabel-&gt;GetOutput() );<br>&gt;&nbsp;  converter-&gt;Update();<br>&gt; !!!! Why does it not work if i use this part of code from the journal<br>&gt; /*<br>&gt;<br>&gt; and valuate the attributes with the dedicated filter:&nbsp; <br>&gt; ShapeLabelMapFilter<br>&gt; typedef itk::ShapeLabelMapFilter&lt; LabelMapType &gt; ShapeFilterType;&nbsp; <br>&gt; ShapeFilterType::Pointer shape = ShapeFilterType::New(); shape- <br>&gt; &gt;SetInput( converter-&gt;GetOutput() );<br>&gt; update the shape filter, so its output will be up to date<br>&gt;
 shape-&gt;Update();<br>&gt;<br>&gt; */<br>&gt;<br>&gt;<br>&gt;&nbsp;  LabelMapType::Pointer labelMap = converter-&gt;GetOutput();<br>&gt; std::cout&lt;&lt;"nr of label objects"&lt;&lt;labelMap- <br>&gt; &gt;GetNumberOfLabelObjects()&lt;&lt;std::endl;<br>&gt;<br>&gt;&nbsp;  for( unsigned int label=1; label&lt;=labelMap- <br>&gt; &gt;GetNumberOfLabelObjects(); label++ )<br>&gt;&nbsp; &nbsp;  {<br>&gt;<br>&gt;&nbsp; &nbsp;  const LabelObjectType * labelObject = labelMap- <br>&gt; &gt;GetLabelObject( label );<br>&gt;&nbsp; &nbsp;  std::cout &lt;&lt; label &lt;&lt; "\t" &lt;&lt; labelObject-&gt;GetPhysicalSize() &lt;&lt;&nbsp; <br>&gt; "\t" &lt;&lt; labelObject-&gt;GetCentroid() &lt;&lt; std::endl;<br>&gt;&nbsp; &nbsp;  }<br>&gt;<br>&gt; typedef itk::LabelShapeOpeningImageFilter&lt; LabelImageType &gt;&nbsp; <br>&gt; LabelOpeningType;<br>&gt; LabelOpeningType::Pointer opening = LabelOpeningType::New();<br>&gt; opening-&gt;SetInput(
 relabel-&gt;GetOutput());<br>&gt; opening-&gt;SetBackgroundValue(0);<br>&gt; opening-&gt;SetLambda( 100 );<br>&gt; opening-&gt;SetReverseOrdering( false );<br>&gt; //NO IDEA About the Attribute<br>&gt; //I thought it should be the labelMap-&gt;Size()) should be as attribute<br>&gt; opening-&gt;SetAttribute("PERIMETER");<br>&gt; itk::SimpleFilterWatcher watcher(opening, "filter");<br>&gt;<br>&gt; Then i would like to get back the binary image and see it but i&nbsp; <br>&gt; can't get the proper image types as input to&nbsp; <br>&gt; LabelMapToLabelIamgeFilter....So the commented part is not working<br>&gt;<br>&gt; /*typedef itk::LabelMapToLabelImageFilter&lt; LabelImageType,&nbsp; <br>&gt; LabelImageType &gt; L2IType;<br>&gt; L2IType::Pointer l2i = L2IType::New();<br>&gt; l2i-&gt;SetInput( opening-&gt;GetOutput() );<br>&gt;<br>&gt; typedef itk::ImageFileWriter&lt; LabelImageType &gt; WriterType;<br>&gt; WriterType::Pointer writer =
 WriterType::New();<br>&gt; writer-&gt;SetInput( l2i-&gt;GetOutput() );<br>&gt; writer-&gt;SetFileName( "/Users/ellaK/Documents/Morphology/ <br>&gt; Opening.gipl");<br>&gt; writer-&gt;Update();*/<br>&gt; std::getchar();<br>&gt;<br>&gt;<br>&gt;<br>&gt; Maybe i am doing this the wrong way, and i can't use it for 3D images.<br>&gt; If anybody already already worked with this filters please give me a&nbsp; <br>&gt; hint to what i am doing wrong.<br>&gt; Thanks,<br>&gt;&nbsp; &nbsp; Ella<br>&gt;<br>&gt; _____________________________________<br><span>&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><br>&gt;<br>&gt; Visit other Kitware open-source projects at<br>&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>&gt;<br>&gt; Kitware offers ITK Training Courses, for more information visit:<br>&gt; <a
 href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>&gt;<br>&gt; Please keep messages on-topic and check the ITK FAQ at:<br>&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>&gt;<br>&gt; Follow this link to subscribe/unsubscribe:<br>&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>&gt;<br>&gt;<br>&gt; _____________________________________<br><span>&gt; Powered by <a target="_blank" href="http://www.kitware.com">www.kitware.com</a></span><br>&gt;<br>&gt; Visit other Kitware open-source projects at<br>&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>&gt;<br>&gt; Kitware offers ITK Training Courses, for more information visit:<br>&gt; <a
 href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>&gt;<br>&gt; Please keep messages on-topic and check the ITK FAQ at:<br>&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>&gt;<br>&gt; Follow this link to subscribe/unsubscribe:<br>&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br><br>-- <br>Ga?tan Lehmann<br>Biologie du D?veloppement et de la Reproduction<br>INRA de Jouy-en-Josas (France)<br>tel: +33 1 34 65 29 66&nbsp; &nbsp; fax: 01 34 65 29 09<br><a href="http://voxel.jouy.inra.fr" target="_blank">http://voxel.jouy.inra.fr</a>&nbsp; <a href="http://www.itk.org" target="_blank">http://www.itk.org</a><br><a href="http://www.mandriva.org" target="_blank">http://www.mandriva.org</a>&nbsp; <a href="http://www.bepo.fr"
 target="_blank">http://www.bepo.fr</a><br><br>-------------- next part --------------<br>A non-text attachment was scrubbed...<br>Name: PGP.sig<br>Type: application/pgp-signature<br>Size: 203 bytes<br>Desc: Ceci est une signature ?lectronique PGP<br>URL: &lt;<a href="http://www.itk.org/pipermail/insight-users/attachments/20110330/91353cb7/attachment-0001.pgp" target="_blank">http://www.itk.org/pipermail/insight-users/attachments/20110330/91353cb7/attachment-0001.pgp</a>&gt;<br><br>------------------------------<br><br>_______________________________________________<br>Insight-users mailing list<br><a ymailto="mailto:Insight-users@itk.org" href="mailto:Insight-users@itk.org">Insight-users@itk.org</a><br><a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br><br><br>End of Insight-users Digest, Vol 83, Issue 56<br>*********************************************<br></div></div><div
 style="position:fixed"></div>


</div></body></html>