Skip to content
Snippets Groups Projects
Commit 782ae6cb authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

DOC: use analyze instead of analyse (more coherent with itk/otb code)

parent 8cf8a3bb
No related branches found
No related tags found
1 merge request!14Dogfooding PolygonClassStatistics application
...@@ -76,7 +76,7 @@ private: ...@@ -76,7 +76,7 @@ private:
SetDocName("Polygon Class Statistics"); SetDocName("Polygon Class Statistics");
SetDocLongDescription("The application processes a set of geometries " SetDocLongDescription("The application processes a set of geometries "
"intended for training (they should have a field giving the associated " "intended for training (they should have a field giving the associated "
"class). The geometries are analysed against a support image to compute " "class). The geometries are analyzed against a support image to compute "
"statistics : \n" "statistics : \n"
" - number of samples per class\n" " - number of samples per class\n"
" - number of samples per geometry\n" " - number of samples per geometry\n"
...@@ -100,7 +100,7 @@ private: ...@@ -100,7 +100,7 @@ private:
MandatoryOff("mask"); MandatoryOff("mask");
AddParameter(ParameterType_InputFilename, "vec", "Input vectors"); AddParameter(ParameterType_InputFilename, "vec", "Input vectors");
SetParameterDescription("vec","Input geometries to analyse"); SetParameterDescription("vec","Input geometries to analyze");
AddParameter(ParameterType_OutputFilename, "out", "Output Statistics"); AddParameter(ParameterType_OutputFilename, "out", "Output Statistics");
SetParameterDescription("out","Output file to store statistics (XML format)"); SetParameterDescription("out","Output file to store statistics (XML format)");
...@@ -223,7 +223,7 @@ private: ...@@ -223,7 +223,7 @@ private:
filter->SetLayerIndex(this->GetParameterInt("layer")); filter->SetLayerIndex(this->GetParameterInt("layer"));
filter->GetStreamer()->SetAutomaticAdaptativeStreaming(GetParameterInt("ram")); filter->GetStreamer()->SetAutomaticAdaptativeStreaming(GetParameterInt("ram"));
AddProcess(filter->GetStreamer(),"Analyse polygons..."); AddProcess(filter->GetStreamer(),"Analyze polygons...");
filter->Update(); filter->Update();
FilterType::ClassCountMapType &classCount = filter->GetClassCountOutput()->Get(); FilterType::ClassCountMapType &classCount = filter->GetClassCountOutput()->Get();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment