Skip to content
Snippets Groups Projects
Commit 65694916 authored by Victor Poughon's avatar Victor Poughon
Browse files

DOC: typos from code review

parent 140b9036
No related branches found
No related tags found
No related merge requests found
......@@ -18,17 +18,6 @@ def parameter_warnings(app_warn, app, key):
if "." in name:
warn("name contains a special character (.)")
# disabled because there are so many for now
#if description == "":
#warn("missing description")
# disabled because there are so many for now
#if len(description) > 0 and description[-1] != ".":
#warn("description does not end with a period")
#if len(description) > 0 and " :" in description:
#warn("description has a space before a colon")
def application_documentation_warnings(app):
"Emit warnings about application documentation"
......@@ -38,16 +27,9 @@ def application_documentation_warnings(app):
description = app.GetDescription()
longdescription = app.GetDocLongDescription()
# disable because there are so many for now
#if not longdescription[-1] == ".":
#warn("Application Long Description does not end with a period (.)")
if re.search("\\n [a-zA-Z]", longdescription):
warn("Application Long Description contains '\\n ' pattern (usually not intended)")
#if " :" in longdescription:
#warn("Application Long Description has a space before a colon")
if app.GetNumberOfExamples() == 0:
warn("Application has no examples")
......
......@@ -417,7 +417,7 @@ private:
"4) SampleExtraction: extract the samples descriptors (update of SampleSelection output file),\n"
"5) ComputeImagesStatistics: compute images second order statistics,\n"
"6) TrainVectorClassifier: train the SharkKMeans model,\n"
"7) ImageClassifier: performs the classification of the input image "
"7) ImageClassifier: perform the classification of the input image "
"according to a model file.\n\n"
"It's possible to choice random/periodic modes of the SampleSelection application.\n"
"If you want keep the temporary files (sample selected, model file, ...), "
......
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