<font color="#0000ff">
<div>
<p><font size="2">Hello,</font></p>
<p><font size="2">I'm trying to aply <font face="">Resampling an Anisotropic image to make it Isotropic as in ItkSofwareGuide, but it doesn't recognize intensityWindowing ('<font size="1"><font size="2">intensityWindowing' : undeclared identifier ). Why?
</font></font></font></font></p>
<p><font color="#0000ff" size="2"><font color="#000000">#nclude</font></font><font size="2"><font color="#000000"> &quot;itkResampleImageFilter.h&quot;</font></font></p>
<p></p></div></font><font color="#000000" size="2">#include</font><font size="2"><font color="#000000"> &quot;itkRecursiveGaussianImageFilter.h&quot;</font>
<p></p></font><font color="#000000" size="2">#include</font><font size="2"><font color="#000000"> &quot;itkIdentityTransform.h&quot;</font>
<p></p></font><font color="#000000" size="2">#include</font><font size="2"><font color="#000000"> &quot;itkLinearInterpolateImageFunction.h&quot;</font>
<p></p></font><font color="#000000"><font size="2">#include</font><font size="2"> &quot;itkIntensityWindowingImageFilter.h&quot;</font></font>
<p><font size="2"><font color="#000000">const unsigned int</font><font color="#000000"> Dimension = 3;</font></font></p>
<p><font size="2"><font color="#000000">typedef float</font><font color="#000000"> InternalPixelType;</font></font></p>
<p>
<p><font color="#000000" size="2"></font></p><font color="#000000"><font size="2">typedef itk::Image&lt; InternalPixelType, Dimension &gt; InternalImageType;</font></font></p>
<div><font color="#000000" size="2">typedef</font><font size="2"><font color="#000000"> itk::RecursiveGaussianImageFilter&lt; InternalImageType,InternalImageType &gt; GaussianFilterType;</font></font></div>
<p><font color="#000000">GaussianFilterType::Pointer smootherX = GaussianFilterType::New();</font></p>
<p><font color="#000000">GaussianFilterType::Pointer smootherY = GaussianFilterType::New();</font></p>
<p><font color="#000000">smootherX -&gt; SetInput( <font color="#ff0000">intensityWindowing</font>-&gt;GetOutput());</font></p>
<p><font color="#000000">smootherY -&gt; SetInput( smootherX-&gt;GetOutput());</font></p>
<p>Thanks</p>