public class ConfigBackgroundGaussian
extends java.lang.Object
implements boofcv.struct.Configuration
ConfigBackgroundGaussian.| Modifier and Type | Field and Description |
|---|---|
float |
initialVariance
The initial variance assigned to a new pixel.
|
boofcv.alg.interpolate.InterpolationType |
interpolation
Specifies which interpolation it will use.
|
float |
learnRate
Specifies how fast it will adapt to changes in the background.
|
float |
minimumDifference
Minimum Euclidean distance between the mean background and observed pixel value for it to be considered moving.
|
float |
threshold
Threshold for classifying a pixel as background or not.
|
| Constructor and Description |
|---|
ConfigBackgroundGaussian(float threshold) |
ConfigBackgroundGaussian(float threshold,
float learnRate) |
| Modifier and Type | Method and Description |
|---|---|
void |
checkValidity() |
public float learnRate
public float threshold
public float initialVariance
public float minimumDifference
public boofcv.alg.interpolate.InterpolationType interpolation
InterpolationType.BILINEAR or
InterpolationType.NEAREST_NEIGHBOR recommended.
ONLY USED FOR MOVING BACKGROUNDS!