<DIV>
<DIV>Thanks jJulien it works,</DIV>
<DIV>&nbsp;</DIV>
<DIV>maybe if I can another question about the implementation of static methods in ITK...</DIV>
<DIV><BR>myFunction is a static function and it is&nbsp;define in a .h and implemented in a .txx <BR>so if I put everything in my .h like you said&nbsp; it works:</DIV>
<DIV><BR>typedef typename ImageType::Pointer InputImagePointer; <BR>static InputImagePointer::Pointer myFunction(...)<BR>&nbsp;{<BR>....<BR>}<BR>or if I don't want to use the typedef<BR>static typename TImage::Pointer myFunction(...)<BR>&nbsp;{<BR>....<BR>}<BR>and you guess that My Object is templated using TImage ...</DIV>
<DIV>&nbsp;</DIV>
<DIV>BUT, I don't know how to implement it in my .txx and just define the header&nbsp;function in my .h as we do usually (it&nbsp;never compile ....)</DIV>
<DIV><BR>.h<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; typedef typename ImageType::Pointer InputImagePointer; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; static InputImagePointer::Pointer myFunction(...);<BR>.txx<BR>static InputImagePointer::Pointer myFunction(...)<BR>{</DIV>
<DIV>}<BR><BR>Thanks julien for help,</DIV>
<DIV>Lagaffe</DIV>
<DIV><BR><B><I>Julien Jomier &lt;jjomier@cs.unc.edu&gt;</I></B> wrote:</DIV>
<BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">Hi Lagaffe,<BR><BR>This is an issue with smart pointers.<BR>As you probably know smart pointers delete themselves when there are not <BR>assigned anymore.<BR>In your case, in myFunction(), the ImportFilter is creating a smart <BR>pointer as output image, but myFunction() is returning a raw pointer, <BR>which means that the reference count is not incremented and the output <BR>pointer is destroyed at the end of the myFunction() scope.<BR>An easy fix is to make your function return a smart pointer and assign a <BR>smart pointer in your main.<BR><BR>Something like:<BR><BR>ImageType::Pointer myFunction()<BR>{<BR>...<BR>return ImportFilter-&gt;GetOuput()<BR>}<BR><BR>and in your program:<BR><BR>typedef int PixelType;<BR>const int Dimension=2, Lx=7, Ly=5;<BR>typedef itk::Image &lt; PixelType, Dimension &gt; ImageType;<BR>ImageType::Pointer inputImage=myFunction(...);<BR><BR>Let us know if
 that was the problem,<BR><BR>Julien<BR><BR>Mr Gaffe wrote:<BR>&gt; hello,<BR>&gt; <BR>&gt; I try to build an itkImage with a function wich use an <BR>&gt; importImageFilter; I can display my image inside my function (so the <BR>&gt; importation pipeline is ok), but when I try to do the same thing in my <BR>&gt; program using the return itkImage pointer it doesn't work !<BR>&gt; <BR>&gt; basically this is my code;<BR>&gt; function:<BR>&gt; <BR>&gt; ImageType* myFunction(...)<BR>&gt; ... build the image and Import it with itkImportImageFilter<BR>&gt; ... I did an Update<BR>&gt; I can display my Image using std::cout &lt;&lt; ImportFilter-&gt;GetOuput() <BR>&gt; &lt;<?xml:namespace prefix = std /><std::endl OK.<br is importation the So ,>&gt; <BR>&gt; finally,I return the pointer:<BR>&gt; return ImportFilter-&gt;GetOuput()<BR>&gt; <BR>&gt; In my program:<BR>&gt; typedef int PixelType;<BR>&gt; const int Dimension=2, Lx=7, Ly=5;<BR>&gt; typedef itk::Image &lt; PixelType, Dimension &gt;
 ImageType;<BR>&gt; ImageType* inputImage=myFunction(...);<BR>&gt; <BR>&gt; When I try to display std:cout&lt;<INPUTIMAGE <br a have I std::endl; <<>&gt; pointer value and not all the usual image information .... and if I try <BR>&gt; to use inputImage to do something it crash !<BR>&gt; <BR>&gt; I think, I am not using the good return type or something like that?<BR>&gt; <BR>&gt; thanks for help<BR>&gt; lagaffe<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; ------------------------------------------------------------------------<BR>&gt; Découvrez le nouveau Yahoo! Mail : 250 Mo d'espace de stockage pour vos <BR>&gt; mails !<BR>&gt; Créez votre Yahoo! Mail <BR>&gt; <HTTP: evt="25917/*http://fr.rd.yahoo.com/mail_fr/mail_campaigns/splash/taglines_250/default/*http://fr.promotions.yahoo.com/mail/creer28.html" fr.rd.yahoo.com *http: taglines mail><BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; ------------------------------------------------------------------------<BR>&gt; <BR>&gt;
 _______________________________________________<BR>&gt; Insight-users mailing list<BR>&gt; Insight-users@itk.org<BR>&gt; http://www.itk.org/mailman/listinfo/insight-users<BR></BLOCKQUOTE></std::endl></DIV><p>
                <hr size=1> 
Découvrez le nouveau Yahoo! Mail : <font color="red">250 Mo d'espace</font> de stockage pour vos mails !<br><a href="http://fr.rd.yahoo.com/mail/taglines/*http://fr.rd.yahoo.com/evt=25917/*http://fr.rd.yahoo.com/mail_fr/mail_campaigns/splash/taglines_250/default/*http://fr.promotions.yahoo.com/mail/creer28.html">Créez votre Yahoo! Mail</a>