<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"> "itkResampleImageFilter.h"</font></font></p>
<p></p></div></font><font color="#000000" size="2">#include</font><font size="2"><font color="#000000"> "itkRecursiveGaussianImageFilter.h"</font>
<p></p></font><font color="#000000" size="2">#include</font><font size="2"><font color="#000000"> "itkIdentityTransform.h"</font>
<p></p></font><font color="#000000" size="2">#include</font><font size="2"><font color="#000000"> "itkLinearInterpolateImageFunction.h"</font>
<p></p></font><font color="#000000"><font size="2">#include</font><font size="2"> "itkIntensityWindowingImageFilter.h"</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< InternalPixelType, Dimension > InternalImageType;</font></font></p>
<div><font color="#000000" size="2">typedef</font><font size="2"><font color="#000000"> itk::RecursiveGaussianImageFilter< InternalImageType,InternalImageType > 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 -> SetInput( <font color="#ff0000">intensityWindowing</font>->GetOutput());</font></p>
<p><font color="#000000">smootherY -> SetInput( smootherX->GetOutput());</font></p>
<p>Thanks</p>