Class_ForestTrain {deforestable} | R Documentation |
Class ForestTrain is the main class to contain models for binary classification forest/non-forest. It includes the following elements:
In most cases objects of this class are generated by function train
.
Then, classification of terrain images is made by classify
.
Element | Description |
call | the function call with which it was created |
tp | the number of true positives obtained during training |
fp | the number of false positives obtained during training |
tn | the number of true negatives obtained during training |
fn | the number of false negatives obtained during training |