diff --git a/Testing/Code/DisparityMap/CMakeLists.txt b/Testing/Code/DisparityMap/CMakeLists.txt index fe3b99d35badf5d975a429a77448c79a5332bf30..6b745eaa73a83c3bf685e2e247757e69e3218f25 100644 --- a/Testing/Code/DisparityMap/CMakeLists.txt +++ b/Testing/Code/DisparityMap/CMakeLists.txt @@ -61,6 +61,12 @@ ADD_TEST(dmTvNearestPointDeformationFieldGenerator ${DISPARITYMAP_TESTS1} ADD_TEST(dmTuNCCRegistrationFilterNew ${DISPARITYMAP_TESTS1} otbNCCRegistrationFilterNew) +# ------- otb::MIRegistrationFilter ---------- + +ADD_TEST(dmTuMIRegistrationFilterNew ${DISPARITYMAP_TESTS1} + otbMIRegistrationFilterNew) + + # ------- otb::NNearestPointsLinearInterpolateDeformationFieldGenerator ---------- ADD_TEST(dmTuNNearestPointsLinearInterpolateDeformationFieldGeneratorNew ${DISPARITYMAP_TESTS1} @@ -310,6 +316,7 @@ SET(BasicDisparityMap_SRCS1 otbDisparityMapEstimationMethodNew.cxx otbDisparityMapEstimationMethod.cxx otbNCCRegistrationFilterNew.cxx +otbMIRegistrationFilterNew.cxx otbPointSetToDeformationFieldGeneratorNew.cxx otbNearestPointDeformationFieldGeneratorNew.cxx otbNearestPointDeformationFieldGenerator.cxx diff --git a/Testing/Code/DisparityMap/otbDisparityMapTests1.cxx b/Testing/Code/DisparityMap/otbDisparityMapTests1.cxx index aabc0c414f7646653f14f17a16dd22f702b885db..82515423c023942365a1ae168b431eb7aafd8c9e 100644 --- a/Testing/Code/DisparityMap/otbDisparityMapTests1.cxx +++ b/Testing/Code/DisparityMap/otbDisparityMapTests1.cxx @@ -36,5 +36,6 @@ REGISTER_TEST(otbNNearestPointsLinearInterpolateDeformationFieldGenerator); REGISTER_TEST(otbBSplinesInterpolateDeformationFieldGeneratorNew); REGISTER_TEST(otbBSplinesInterpolateDeformationFieldGenerator); REGISTER_TEST(otbPointSetWithTransformToDeformationFieldGeneratorNew); -REGISTER_TEST(otbNCCRegistrationFilterNew); +REGISTER_TEST(otbNCCRegistrationFilterNew); +REGISTER_TEST(otbMIRegistrationFilterNew); } diff --git a/Testing/Code/DisparityMap/otbMIRegistrationFilterNew.cxx b/Testing/Code/DisparityMap/otbMIRegistrationFilterNew.cxx new file mode 100644 index 0000000000000000000000000000000000000000..c172705eacee17db0850df4632d1e771d20ab764 --- /dev/null +++ b/Testing/Code/DisparityMap/otbMIRegistrationFilterNew.cxx @@ -0,0 +1,46 @@ +/*========================================================================= + + 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 "otbMIRegistrationFilter.h" +#include "otbImage.h" + +int otbMIRegistrationFilterNew(int argc, char* argv[]) +{ + const unsigned int ImageDimension = 2; + + typedef double PixelType; + typedef itk::Vector<double,ImageDimension> DeformationPixelType; + + typedef double CoordinateRepresentationType; + + //Allocate Images + typedef otb::Image<PixelType,ImageDimension> MovingImageType; + typedef otb::Image<PixelType,ImageDimension> FixedImageType; + typedef otb::Image<DeformationPixelType, + ImageDimension> DeformationFieldType; + + //Create the filter + typedef otb::MIRegistrationFilter< FixedImageType, + MovingImageType, + DeformationFieldType > + RegistrationFilterType; + + // Instantiation + RegistrationFilterType::Pointer registrator = RegistrationFilterType::New(); + + return EXIT_SUCCESS; +}