<br>Hi Sabine<br><br>It looks like what you need is the <br><br>     itk::PasteImageFilter<br><a href="http://public.kitware.com/Insight/Doxygen/html/classitk_1_1PasteImageFilter.html">http://public.kitware.com/Insight/Doxygen/html/classitk_1_1PasteImageFilter.html</a><br>
<br><br>Unless you are not just copying a region, but <br>also applying a geometrical transformation <br>such as rotation or scaling.<br><br><br>Please let us know,<br><br><br>     Thanks<br><br><br>          Luis<br><br>
<br>--------------------------------------------------------<br><div class="gmail_quote">On Wed, Feb 25, 2009 at 11:09 AM, slorentz <span dir="ltr">&lt;<a href="mailto:professor_rumsdiegeige@yahoo.com">professor_rumsdiegeige@yahoo.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
Hello!<br>
<br>
I try to do the following:I have two images. The first one is called<br>
&quot;ResultImage&quot;, and the second one is called &quot;ImageToAdd&quot;. I want to add<br>
everything of &quot;ImageToAdd&quot; that is not visible in the first frame to<br>
&quot;ResultImage&quot;. So, first I compute the registration parameters:<br>
<br>
// compute optimal registration parameters<br>
registration-&gt;SetFixedImage(  ResultImage );<br>
registration-&gt;SetMovingImage( ImageToAdd );<br>
registration-&gt;SetInitialTransformParameters( initialParameters );<br>
registration-&gt;Update();<br>
<br>
ParametersType finalParameters = registration-&gt;GetLastTransformParameters();<br>
<br>
<br>
<br>
Then I&#39;d like to copy the new part of the image &quot;ImageToAdd&quot; in order to<br>
have &quot;ResultImage&quot; + the new part of &quot;ImageToAdd&quot;... I tried this:<br>
<br>
ImageType::SizeType S = (ResultImage-&gt;GetLargestPossibleRegion()).GetSize();<br>
ImageType::PointType O = ResultImage-&gt;GetOrigin(); //O[0] -= 40;<br>
resampler-&gt;SetSize( size );<br>
resampler-&gt;SetInput( Y );<br>
resampler-&gt;SetTransform( registration-&gt;GetOutput()-&gt;Get() );<br>
resampler-&gt;SetOutputOrigin( O );<br>
resampler-&gt;SetOutputSpacing( ResultImage-&gt;GetSpacing() );<br>
resampler-&gt;SetDefaultPixelValue( 50 );<br>
<br>
// this should be the new, stitched image<br>
ImageType::Pointer Z = resampler-&gt;GetOutput();<br>
<br>
// write the result to a file<br>
typedef itk::ImageFileWriter&lt; ImageType &gt; WriterType;<br>
WriterType::Pointer wt = WriterType::New();<br>
wt-&gt;SetFileName(&quot;test.bmp&quot;);<br>
wt-&gt;SetInput( Z );<br>
wt-&gt;Update();<br>
<br>
<br>
but it doesn&#39;t really work.... Is the way to use the resampling filter<br>
correct at all?<br>
<br>
<br>
Regards,<br>
Sabine Lorentz<br>
<br>
<br>
<br>
_____________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at: <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
</blockquote></div><br>