Skip to content
Snippets Groups Projects
Commit bd41873c authored by Christophe Palmann's avatar Christophe Palmann
Browse files

ENH: typo

parent 735349bc
No related branches found
No related tags found
No related merge requests found
......@@ -402,7 +402,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_LIBSVM
TrainLibSVM(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module LIBSVM is not installed. You should consider turning OTB_USE_LIBSVM on during cmake configuration.");
#endif
}
......@@ -410,7 +410,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_OPENCV
TrainSVM(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module OPENCV is not installed. You should consider turning OTB_USE_OPENCV on during cmake configuration.");
#endif
}
......@@ -418,7 +418,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_OPENCV
TrainBoost(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module OPENCV is not installed. You should consider turning OTB_USE_OPENCV on during cmake configuration.");
#endif
}
......@@ -426,7 +426,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_OPENCV
TrainDecisionTree(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module OPENCV is not installed. You should consider turning OTB_USE_OPENCV on during cmake configuration.");
#endif
}
......@@ -434,7 +434,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_OPENCV
TrainGradientBoostedTree(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module OPENCV is not installed. You should consider turning OTB_USE_OPENCV on during cmake configuration.");
#endif
}
......@@ -442,7 +442,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_OPENCV
TrainNeuralNetwork(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module OPENCV is not installed. You should consider turning OTB_USE_OPENCV on during cmake configuration.");
#endif
}
......@@ -450,7 +450,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_OPENCV
TrainNormalBayes(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module OPENCV is not installed. You should consider turning OTB_USE_OPENCV on during cmake configuration.");
#endif
}
......@@ -458,7 +458,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_OPENCV
TrainRandomForests(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module OPENCV is not installed. You should consider turning OTB_USE_OPENCV on during cmake configuration.");
#endif
}
......@@ -466,7 +466,7 @@ void TrainImagesClassifier::DoExecute()
{
#ifdef OTB_USE_OPENCV
TrainKNN(trainingListSample, trainingLabeledListSample);
#elseif
#else
otbAppLogFATAL("Module OPENCV is not installed. You should consider turning OTB_USE_OPENCV on during cmake configuration.");
#endif
}
......
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