Class_ForestTrain {deforestable} | R Documentation |
S3 class ForestTrain
Description
Class ForestTrain is the main class to contain models for binary classification forest/non-forest. It includes the following elements:
Details
In most cases objects of this class are generated by function train
.
Then, classification of terrain images is made by classify
.
Slots
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 |
[Package deforestable version 3.1.1 Index]