<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
What is the pixel type of "ImageType"?<br>
<br>
On 04.08.2010 21:11, Ming Chao wrote:
<blockquote
 cite="mid:AANLkTikhDJdV9oASHreBjpTF=eTZHamt_SGer26yXgHy@mail.gmail.com"
 type="cite">I checked the complex image FFT created from the input
image was fine. Also I checked the real and imaginary parts in floating
point format, respectively. They both are fine. The problem started to
happen when rescaling the real/imaginary image into an interger-type
image. Here is part of the rescaling code:
  <div><br>
  </div>
  <div>
  <div>&nbsp;&nbsp;typedef unsigned char WritePixelType;</div>
  <div>&nbsp;&nbsp;typedef itk::Image&lt; WritePixelType, Dimension &gt;
WriteImageType;</div>
  <div>&nbsp;</div>
  <div>&nbsp;&nbsp;typedef itk::RescaleIntensityImageFilter&lt;ImageType,
WriteImageType &gt; RescaleFilterType;</div>
  <div><br>
  </div>
  <div>&nbsp;&nbsp;RescaleFilterType::Pointer intensityRescaler =
RescaleFilterType::New();</div>
  <div>&nbsp;&nbsp;intensityRescaler-&gt;SetOutputMinimum( &nbsp;0 &nbsp;);</div>
  <div>&nbsp;&nbsp;intensityRescaler-&gt;SetOutputMaximum( 255 );</div>
  <div>&nbsp;</div>
  <div>&nbsp;&nbsp;intensityRescaler-&gt;SetInput( realFilter-&gt;GetOutput() );</div>
  <div><br>
  </div>
  <div>&nbsp;&nbsp;typedef itk::ImageFileWriter&lt; WriteImageType &gt;
WriterType;</div>
  <div>&nbsp;&nbsp;WriterType::Pointer writer = WriterType::New();</div>
  <div>&nbsp;&nbsp;writer-&gt;SetFileName( argv[2] );</div>
  <div>&nbsp;&nbsp;writer-&gt;SetInput( intensityRescaler-&gt;GetOutput() );</div>
  <div><br>
  </div>
  <div>&nbsp;&nbsp;try</div>
  <div>&nbsp;&nbsp; &nbsp;{</div>
  <div><span class="Apple-tab-span" style="white-space: pre;"> </span>writer-&gt;Update();</div>
  <div>&nbsp;&nbsp; &nbsp;}</div>
  <div>&nbsp;&nbsp;catch( itk::ExceptionObject &amp; excp )</div>
  <div>&nbsp;&nbsp; &nbsp;{</div>
  <div><span class="Apple-tab-span" style="white-space: pre;"> </span>std::cerr
&lt;&lt; "Error writing the real image: " &lt;&lt; std::endl;</div>
  <div><span class="Apple-tab-span" style="white-space: pre;"> </span>std::cerr
&lt;&lt; excp &lt;&lt; std::endl;</div>
  <div><span class="Apple-tab-span" style="white-space: pre;"> </span>return
EXIT_FAILURE;</div>
  <div>&nbsp;&nbsp; &nbsp;}</div>
  <div><br>
  </div>
  <div>&nbsp;&nbsp;typedef itk::ImageRegionConstIterator&lt; WriteImageType &gt;
ConstIteratorType;</div>
  <div>&nbsp;&nbsp;WriteImageType::Pointer RealImage =
intensityRescaler-&gt;GetOutput();</div>
  <div>&nbsp;&nbsp;ConstIteratorType in( RealImage,
RealImage-&gt;GetRequestedRegion() );</div>
  <div>&nbsp;&nbsp;</div>
  <div>&nbsp;&nbsp;for ( in.GoToBegin(); !in.IsAtEnd(); ++in )</div>
  <div>&nbsp;&nbsp;{</div>
  <div><span class="Apple-tab-span" style="white-space: pre;"> </span>
&nbsp;std::cout &lt;&lt; in.Get() &lt;&lt; std::endl;</div>
  <div>&nbsp;&nbsp;}</div>
  </div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div>From the output I got all zeros....Apparently something wrong
with the rescaler. Could anybody take a look? Thanks very much,</div>
  <div><br>
  </div>
  <div>Ming</div>
  <div><br>
  <br>
  <div class="gmail_quote">On Wed, Aug 4, 2010 at 9:35 AM, Ming Chao <span
 dir="ltr">&lt;<a moz-do-not-send="true"
 href="mailto:mingchao2005@gmail.com">mingchao2005@gmail.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;">I
tried to run FFTImageFilter.cxx to do an FFT of an image. The input
image is a 512x512, 24 bit thoracic CT image in jpg format. The output
of the example cxx code are the real and imaginary parts of FFT of the
input image. However, when I look at the two output images, they are
just uniformly grey/black, depending on&nbsp;
    <div><br>
    </div>
    <div>
    <div>&nbsp;&nbsp;intensityRescaler-&gt;SetOutputMinimum( &nbsp;0 &nbsp;);</div>
    <div>&nbsp;&nbsp;intensityRescaler-&gt;SetOutputMaximum( 255 );</div>
    </div>
    <div><br>
    </div>
    <div>in the code. What did I do wrong? Many thanks,</div>
    <div><br>
    </div>
    <font color="#888888">
    <div>Ming</div>
    <div><br>
    </div>
    </font></blockquote>
  </div>
  <br>
  </div>
  <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_____________________________________
Powered by <a class="moz-txt-link-abbreviated" href="http://www.kitware.com">www.kitware.com</a>

Visit other Kitware open-source projects at
<a class="moz-txt-link-freetext" href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a>

Kitware offers ITK Training Courses, for more information visit:
<a class="moz-txt-link-freetext" href="http://www.kitware.com/products/protraining.html">http://www.kitware.com/products/protraining.html</a>

Please keep messages on-topic and check the ITK FAQ at:
<a class="moz-txt-link-freetext" href="http://www.itk.org/Wiki/ITK_FAQ">http://www.itk.org/Wiki/ITK_FAQ</a>

Follow this link to subscribe/unsubscribe:
<a class="moz-txt-link-freetext" href="http://www.itk.org/mailman/listinfo/insight-users">http://www.itk.org/mailman/listinfo/insight-users</a>
  </pre>
</blockquote>
</body>
</html>