From fa5f216a4c552b01b1fcb0fb51990877ca64dcff Mon Sep 17 00:00:00 2001 From: Cedric <cedric.traizet@c-s.fr> Date: Mon, 14 Jan 2019 15:06:02 +0100 Subject: [PATCH] DOC: updated doc for output number parameter --- .../AppHyperspectral/app/otbEndmemberNumberEstimation.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx b/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx index 22853922cf..d5cff2bc74 100644 --- a/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx +++ b/Modules/Applications/AppHyperspectral/app/otbEndmemberNumberEstimation.cxx @@ -107,7 +107,7 @@ private: "False alarm rate for the virtual dimensionality algorithm"); AddParameter(ParameterType_Int,"number","Number of endmembers"); - SetParameterDescription("number", "Estimated number of endmembers"); + SetParameterDescription("number", "The output estimated number of endmembers"); SetParameterRole("number", Role_Output); AddRAMParameter(); @@ -134,7 +134,7 @@ private: auto statisticsFilter = StreamingStatisticsVectorImageFilterType::New(); statisticsFilter->SetInput(inputImage); AddProcess(statisticsFilter->GetStreamer(), "Statistic estimation step"); - + statisticsFilter->Update(); auto correlationMatrix = statisticsFilter->GetCorrelation().GetVnlMatrix(); -- GitLab