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