diff --git a/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx b/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx index f4a0bd1e5f04dcac2d33eb6229c1c2805f4b9564..c826952dd348f7542a89f7d240b5fd9bdb829264 100644 --- a/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbHyperspectralUnmixing.cxx @@ -23,7 +23,7 @@ #include "otbUnConstrainedLeastSquareImageFilter.h" #include "otbISRAUnmixingImageFilter.h" -#include "otbNCLSUnmixingImageFilter.h" +// #include "otbNCLSUnmixingImageFilter.h" //#include "otbFCLSUnmixingImageFilter.h" #include "otbMDMDNMFImageFilter.h" @@ -34,7 +34,7 @@ namespace Wrapper { typedef otb::UnConstrainedLeastSquareImageFilter<DoubleVectorImageType, DoubleVectorImageType, double> UCLSUnmixingFilterType; typedef otb::ISRAUnmixingImageFilter<DoubleVectorImageType, DoubleVectorImageType, double> ISRAUnmixingFilterType; -typedef otb::NCLSUnmixingImageFilter<DoubleVectorImageType, DoubleVectorImageType, double> NCLSUnmixingFilterType; +// typedef otb::NCLSUnmixingImageFilter<DoubleVectorImageType, DoubleVectorImageType, double> NCLSUnmixingFilterType; //typedef otb::FCLSUnmixingImageFilter<DoubleVectorImageType, DoubleVectorImageType, double> FCLSUnmixingFilterType; typedef otb::MDMDNMFImageFilter<DoubleVectorImageType, DoubleVectorImageType> MDMDNMFUnmixingFilterType; @@ -65,12 +65,12 @@ enum UnMixingMethod { UnMixingMethod_UCLS, //UnMixingMethod_FCLS, - UnMixingMethod_NCLS, + // UnMixingMethod_NCLS, UnMixingMethod_ISRA, UnMixingMethod_MDMDNMF, }; -const char* UnMixingMethodNames [] = { "UCLS", "FCLS", "NCLS", "ISRA", "MDMDNMF", }; +const char* UnMixingMethodNames [] = { "UCLS", "ISRA", "MDMDNMF", }; class HyperspectralUnmixing : public Application @@ -106,7 +106,7 @@ private: "* Unconstrained Least Square (ucls)\n" // "* Fully Constrained Least Square (fcls)\n" "* Image Space Reconstruction Algorithm (isra)\n" - "* Non-negative constrained\n" + // "* Non-negative constrained\n" "* Least Square (ncls)\n" "* Minimum Dispersion Constrained Non Negative Matrix Factorization (MDMDNMF)." ); @@ -138,8 +138,8 @@ private: // AddChoice("ua.fcls", "FCLS"); // SetParameterDescription("ua.fcls", "Fully constrained Least Square"); - AddChoice("ua.ncls", "NCLS"); - SetParameterDescription("ua.ncls", "Non-negative constrained Least Square"); + // AddChoice("ua.ncls", "NCLS"); + // SetParameterDescription("ua.ncls", "Non-negative constrained Least Square"); AddChoice("ua.isra", "ISRA"); SetParameterDescription("ua.isra", "Image Space Reconstruction Algorithm"); @@ -217,6 +217,7 @@ private: } break; + /* case UnMixingMethod_NCLS: { otbAppLogINFO("NCLS Unmixing"); @@ -231,7 +232,6 @@ private: } break; - /* case UnMixingMethod_FCLS: { otbAppLogINFO("FCLS Unmixing"); diff --git a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt index a430980733388e9732cf69f2270e0396902f904c..96db4207ab0e6425115898943f64fa67ed384cc4 100644 --- a/Modules/Applications/AppHyperspectral/test/CMakeLists.txt +++ b/Modules/Applications/AppHyperspectral/test/CMakeLists.txt @@ -30,15 +30,15 @@ otb_test_application(NAME apTvHyHyperspectralUnmixing_UCLS ${BASELINE}/apTvHyHyperspectralUnmixing_UCLS.tif ${TEMP}/apTvHyHyperspectralUnmixing_UCLS.tif) -otb_test_application(NAME apTvHyHyperspectralUnmixing_NCLS - APP HyperspectralUnmixing - OPTIONS -in ${INPUTDATA}/Hyperspectral/synthetic/hsi_cube.tif - -ie ${INPUTDATA}/Hyperspectral/synthetic/endmembers.tif - -out ${TEMP}/apTvHyHyperspectralUnmixing_NCLS.tif double - -ua ncls - VALID --compare-image ${EPSILON_9} - ${BASELINE}/apTvHyHyperspectralUnmixing_NCLS.tif - ${TEMP}/apTvHyHyperspectralUnmixing_NCLS.tif) +# otb_test_application(NAME apTvHyHyperspectralUnmixing_NCLS +# APP HyperspectralUnmixing +# OPTIONS -in ${INPUTDATA}/Hyperspectral/synthetic/hsi_cube.tif +# -ie ${INPUTDATA}/Hyperspectral/synthetic/endmembers.tif +# -out ${TEMP}/apTvHyHyperspectralUnmixing_NCLS.tif double +# -ua ncls +# VALID --compare-image ${EPSILON_9} +# ${BASELINE}/apTvHyHyperspectralUnmixing_NCLS.tif +# ${TEMP}/apTvHyHyperspectralUnmixing_NCLS.tif) #----------- VertexComponentAnalysis TESTS ----------------