diff --git a/Testing/Fa/AlignementsQB.cxx b/Testing/Fa/AlignementsQB.cxx index ac731ae4dcf135bec429da7bb134bb31c43cc233..858d5e1772bd7c47e6eed7310abcd1b8e2207c50 100755 --- a/Testing/Fa/AlignementsQB.cxx +++ b/Testing/Fa/AlignementsQB.cxx @@ -1,8 +1,8 @@ -#include "itkImage.h" -#include "itkImageFileWriter.h" #include <iostream> #include "itkPolyLineParametricPath.h" +#include "otbImage.h" +#include "otbImageFileWriter.h" #include "otbImageFileReader.h" #include "otbExtractROI.h" #include "otbImageToPathListAlignFilter.h" @@ -31,11 +31,11 @@ int main( int argc, char ** argv ) const unsigned int Dimension = 2; - typedef itk::Image< InputPixelType, Dimension > InputImageType; - typedef itk::Image< OutputPixelType, Dimension > OutputImageType; + typedef otb::Image< InputPixelType, Dimension > InputImageType; + typedef otb::Image< OutputPixelType, Dimension > OutputImageType; typedef otb::ImageFileReader< InputImageType > ReaderType; - typedef itk::ImageFileWriter< OutputImageType > WriterType; + typedef otb::ImageFileWriter< OutputImageType > WriterType; ReaderType::Pointer reader = ReaderType::New(); WriterType::Pointer writer = WriterType::New();