<div>I lost track of your exact problem, but it looks like you need to 1) update the reader, i.e., </div><div><br></div><div>reader-&gt;SetFileName(&quot;Image.png&quot;);</div><div>reader-&gt;Update();</div><div><br></div>
<div>and 2) initialize the metric, i.e.,</div><div><br></div><div>metric-&gt;Initialize();</div><div>cout&lt;&lt;endl&lt;&lt; metric-&gt;GetValue( params ) &lt;&lt; endl ;<br><br><div class="gmail_quote">On Tue, Oct 4, 2011 at 8:24 PM, soheilghafurian <span dir="ltr">&lt;<a href="mailto:soheilghafurian@yahoo.com">soheilghafurian@yahoo.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi Cory<br>
<br>
Thanks a lot for your time and consideration. In order to test it, I wrote a<br>
one page code, and it has the same problem. Here is my code. I think there<br>
is a part that should be added, but I don&#39;t know what it is.<br>
<br>
#include &quot;itkImage.h&quot;<br>
#include &quot;itkImageFileReader.h&quot;<br>
#include &lt;itkMeanSquaresImageToImageMetric.h&gt;<br>
#include &lt;itkIdentityTransform.h&gt;<br>
<br>
#include &quot;QuickView.h&quot;<br>
<br>
using namespace std ;<br>
<br>
int main()<br>
{<br>
  typedef itk::Image&lt; double, 2 &gt;         ImageType;<br>
  typedef itk::ImageFileReader&lt;ImageType&gt; ReaderType;<br>
<br>
  ReaderType::Pointer reader = ReaderType::New();<br>
  reader-&gt;SetFileName(&quot;Image.png&quot;);<br>
<br>
  QuickView viewer;<br>
  viewer.AddImage&lt;ImageType&gt;(reader-&gt;GetOutput());<br>
<br>
<br>
  ImageType::Pointer FixedImage = reader-&gt;GetOutput() ;<br>
  ImageType::Pointer MovingImage = reader-&gt;GetOutput() ;<br>
<br>
  typedef itk::MeanSquaresImageToImageMetric &lt; ImageType , ImageType &gt;<br>
MetricType ;<br>
  typedef itk::IdentityTransform &lt; double , 2 &gt; TransformType ;<br>
<br>
  MetricType::Pointer metric = MetricType::New() ;<br>
  TransformType::Pointer transform = TransformType::New() ;<br>
<br>
  metric-&gt;SetFixedImage( FixedImage ) ;<br>
  metric-&gt;SetMovingImage( MovingImage ) ;<br>
  metric-&gt;SetTransform( transform ) ;<br>
<br>
  TransformType::ParametersType params ;<br>
<br>
  cout&lt;&lt;endl&lt;&lt; metric-&gt;GetValue( params ) &lt;&lt; endl ;<br>
<br>
  viewer.Visualize();<br>
<br>
  return EXIT_SUCCESS;<br>
}<br>
<br>
--<br>
View this message in context: <a href="http://itk-insight-users.2283740.n2.nabble.com/Pixel-difference-between-two-images-tp6832343p6860559.html" target="_blank">http://itk-insight-users.2283740.n2.nabble.com/Pixel-difference-between-two-images-tp6832343p6860559.html</a><br>

Sent from the ITK Insight Users mailing list archive at Nabble.com.<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>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<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></div>