Skip to content
Snippets Groups Projects
Commit 560ecdae authored by Jonathan Guinet's avatar Jonathan Guinet
Browse files

DOC: parameter description in ValidateSVMImage application.

parent ceef7d95
Branches
Tags
No related merge requests found
......@@ -127,15 +127,20 @@ private:
void DoCreateParameters()
{
AddParameter(ParameterType_InputImageList, "il", "Input Image List");
AddParameter(ParameterType_InputVectorDataList, "vd", "Vector Data of sample used to validate the estimator");
AddParameter(ParameterType_Filename, "dem", "A DEM repository");
AddParameter(ParameterType_InputImageList, "il", "Input Image List ");
SetParameterDescription("il", "Input Image List.");
AddParameter(ParameterType_InputVectorDataList, "vd", "Vector Data List ");
SetParameterDescription("vd", "Vector Data of sample used to validate the estimator.");
AddParameter(ParameterType_Filename, "dem", "DEM repository ");
SetParameterDescription("dem", "Path to DEM repository.");
MandatoryOff("dem");
AddParameter(ParameterType_Filename, "imstat", "XML file containing mean and standard deviation of input images.");
AddParameter(ParameterType_Filename, "imstat", "XML stat filename ");
MandatoryOff("imstat");
AddParameter(ParameterType_Filename, "svm", "SVM model to validate its performances.");
AddParameter(ParameterType_Filename, "out", "File which will contain the performance of the SVM model.");
SetParameterDescription("imstat","Path to XML file containing mean and standard deviation of input images.");
AddParameter(ParameterType_Filename, "svm", "SVM validation filename ");
SetParameterDescription("svm","SVM model to validate its performances (given by TrainSVMImagesClassification output for instance).");
AddParameter(ParameterType_Filename, "out", "Output filename ");
SetParameterDescription("out","Filename, which will contain the performance of the SVM model.");
}
void DoUpdateParameters()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment