Skip to content
Snippets Groups Projects
Commit 3098805a authored by Julien Michel's avatar Julien Michel
Browse files

Correction tests en erreur.

parent cd01d5aa
No related branches found
No related tags found
No related merge requests found
......@@ -415,11 +415,15 @@ ADD_TEST(ioTvONERAImageFileReader ${IO_TESTS}
${TEMP}/ioImageFileReaderONERA.hdr )
ADD_TEST(ioTvONERAImageFileReaderComplex ${IO_TESTS}
--compare-image ${TOL} ${BASELINE}/ioImageFileReaderONERAComplex.hdr
${TEMP}/ioImageFileReaderONERAComplex.hdr
--compare-n-images ${TOL} 2
${BASELINE}/ioImageFileReaderONERAComplexReal.hdr
${TEMP}/ioImageFileReaderONERAComplexReal.hdr
${BASELINE}/ioImageFileReaderONERAComplexImag.hdr
${TEMP}/ioImageFileReaderONERAComplexImag.hdr
otbImageFileReaderONERAComplex
${IMAGEDATA}/ONERA/spa3_0215_rad.ent
${TEMP}/ioImageFileReaderONERAComplex.hdr )
${TEMP}/ioImageFileReaderONERAComplexReal.hdr
${TEMP}/ioImageFileReaderONERAComplexImag.hdr )
ADD_TEST(ioTvONERAImageFileWriterComplex ${IO_TESTS}
--compare-image ${TOL} ${BASELINE}/ioImageFileReaderONERAComplexWrite.ent
......
......@@ -22,7 +22,8 @@
#include "itkExceptionObject.h"
#include <iostream>
#include "itkComplexToModulusImageFilter.h"
#include "itkComplexToRealImageFilter.h"
#include "itkComplexToImaginaryImageFilter.h"
#include "otbImage.h"
#include "otbImageFileReader.h"
#include "otbImageFileWriter.h"
......@@ -34,7 +35,8 @@ int otbImageFileReaderONERAComplex(int argc, char* argv[])
{
// Verify the number of parameters in the command line
const char * inputFilename = argv[1];
const char * outputFilename = argv[2];
const char * outputRealFilename = argv[2];
const char * outputImagFilename = argv[3];
typedef std::complex<float> InputPixelType;
typedef float OutputPixelType;
......@@ -61,16 +63,24 @@ int otbImageFileReaderONERAComplex(int argc, char* argv[])
extractROIFilter->SetSizeY( 100 );
extractROIFilter->SetInput( Reader->GetOutput() );
typedef itk::ComplexToModulusImageFilter<
InputImageType, OutputImageType > ModulusFilterType;
typedef itk::ComplexToRealImageFilter<
InputImageType, OutputImageType > RealFilterType;
typedef itk::ComplexToImaginaryImageFilter<
InputImageType, OutputImageType > ImagFilterType;
ModulusFilterType::Pointer modulusFilter = ModulusFilterType::New();
modulusFilter->SetInput( extractROIFilter->GetOutput() );
RealFilterType::Pointer realFilter = RealFilterType::New();
realFilter->SetInput( extractROIFilter->GetOutput() );
ImagFilterType::Pointer imagFilter = ImagFilterType::New();
imagFilter->SetInput( extractROIFilter->GetOutput() );
WriterType::Pointer writer = WriterType::New();
writer->SetFileName( outputFilename );
writer->SetInput( modulusFilter->GetOutput() );
writer->SetFileName( outputRealFilename );
writer->SetInput( realFilter->GetOutput() );
writer->Update();
writer = WriterType::New();
writer->SetFileName( outputImagFilename );
writer->SetInput( imagFilter->GetOutput() );
writer->Update();
}
catch( itk::ExceptionObject & err )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment