From 8469d1f2611418ae6cf7831878c97b4e7ef9f252 Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@cnes.fr> Date: Tue, 3 Nov 2015 16:51:41 +0100 Subject: [PATCH] DOC: Add documentation about what the confidence image contains for Random Forests --- .../Applications/AppClassification/app/otbImageClassifier.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Applications/AppClassification/app/otbImageClassifier.cxx b/Modules/Applications/AppClassification/app/otbImageClassifier.cxx index a47a006c2a..ba23a0d564 100644 --- a/Modules/Applications/AppClassification/app/otbImageClassifier.cxx +++ b/Modules/Applications/AppClassification/app/otbImageClassifier.cxx @@ -105,7 +105,7 @@ private: " * KNearestNeighbors : number of neighbors with the same label\n" " * NeuralNetwork : difference between the two highest responses\n" " * NormalBayes : (not supported)\n" - " * RandomForest : proportion of decision trees that classified the sample to the second class (only works for 2-class models)\n" + " * RandomForest : Confidence (proportion of votes for the majority class). Margin (normalized difference of the votes of the 2 majority classes) is not available for now.\n" " * SVM : distance to margin (only works for 2-class models)\n"); SetDefaultOutputPixelType( "confmap", ImagePixelType_double); MandatoryOff("confmap"); -- GitLab