diff --git a/Testing/Fa/0000169-fftcomplextocomplex.cxx b/Testing/Fa/0000169-fftcomplextocomplex.cxx new file mode 100644 index 0000000000000000000000000000000000000000..38cc24ae09c45e59b8570f4794ef07f50c74a396 --- /dev/null +++ b/Testing/Fa/0000169-fftcomplextocomplex.cxx @@ -0,0 +1,30 @@ +/*========================================================================= + + Program: ORFEO Toolbox + Language: C++ + Date: $Date$ + Version: $Revision$ + + + Copyright (c) Centre National d'Etudes Spatiales. All rights reserved. + See OTBCopyright.txt for details. + + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + +#include "itkExceptionObject.h" +#include "itkFFTComplexToComplexImageFilter.h" + +int main( int argc, char * argv [] ) +{ + typedef itk::FFTComplexToComplexImageFilter < float, 2> FFTFilterType; + + FFTFilterType::Pointer fftFilter = FFTFilterType::New(); + fftFilter->DebugOn(); + + return EXIT_SUCCESS; +}