Commit c4ff6702 authored by Cedric's avatar Cedric
Browse files

DOC: moved the output parameter up in the app so it shows up on top in otbgui

No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
...@@ -92,6 +92,10 @@ private: ...@@ -92,6 +92,10 @@ private:
AddParameter(ParameterType_InputImage, "in", "Input Image Filename"); AddParameter(ParameterType_InputImage, "in", "Input Image Filename");
SetParameterDescription("in","The hyperspectral data cube input"); SetParameterDescription("in","The hyperspectral data cube input");
AddParameter(ParameterType_Int,"number","Number of endmembers");
SetParameterDescription("number", "The output estimated number of endmembers");
SetParameterRole("number", Role_Output);
AddParameter(ParameterType_Choice, "algo", "Unmixing algorithm"); AddParameter(ParameterType_Choice, "algo", "Unmixing algorithm");
SetParameterDescription("algo", "The algorithm to use for the estimation"); SetParameterDescription("algo", "The algorithm to use for the estimation");
AddChoice("algo.elm", "Eigenvalue Likelihood Maximization"); AddChoice("algo.elm", "Eigenvalue Likelihood Maximization");
...@@ -106,10 +110,6 @@ private: ...@@ -106,10 +110,6 @@ private:
SetParameterDescription( "algo.vd.far" , SetParameterDescription( "algo.vd.far" ,
"False alarm rate for the virtual dimensionality algorithm"); "False alarm rate for the virtual dimensionality algorithm");
AddParameter(ParameterType_Int,"number","Number of endmembers");
SetParameterDescription("number", "The output estimated number of endmembers");
SetParameterRole("number", Role_Output);
AddRAMParameter(); AddRAMParameter();
// Doc example parameter settings // Doc example parameter settings
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment