Package boofcv.alg.background.moving
Class BackgroundMovingGaussian_SB<T extends ImageGray<T>,Motion extends InvertibleTransform<Motion>>
java.lang.Object
boofcv.alg.background.BackgroundModel<T>
boofcv.alg.background.BackgroundModelMoving<T,Motion>
boofcv.alg.background.moving.BackgroundMovingGaussian<T,Motion>
boofcv.alg.background.moving.BackgroundMovingGaussian_SB<T,Motion>
- All Implemented Interfaces:
BackgroundAlgorithmGaussian
public class BackgroundMovingGaussian_SB<T extends ImageGray<T>,Motion extends InvertibleTransform<Motion>>
extends BackgroundMovingGaussian<T,Motion>
Implementation of
BackgroundMovingGaussian
for ImageGray
.-
Field Summary
Modifier and TypeFieldDescriptionprotected final InterpolatePixelMB<InterleavedF32>
protected final InterpolatePixelS<T>
protected final InterleavedF32
protected final BackgroundMovingGaussian_SB<T,
Motion>.boofcv.alg.background.moving.BackgroundMovingGaussian_SB.Helper protected final GrowArray<BackgroundMovingGaussian_SB<T,
Motion>.boofcv.alg.background.moving.BackgroundMovingGaussian_SB.Helper> protected final GImageGray
Fields inherited from class boofcv.alg.background.moving.BackgroundMovingGaussian
initialVariance, learnRate, minimumDifference, threshold
Fields inherited from class boofcv.alg.background.BackgroundModelMoving
_transform, backgroundHeight, backgroundWidth, corners, currentToWorld, homeToWorld, worldToCurrent, worldToHome
Fields inherited from class boofcv.alg.background.BackgroundModel
imageType, unknownValue
-
Constructor Summary
ConstructorDescriptionBackgroundMovingGaussian_SB
(float learnRate, float threshold, Point2Transform2Model_F32<Motion> transform, InterpolationType interpType, Class<T> imageType) Configurations background removal. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
void
initialize
(int backgroundWidth, int backgroundHeight, Motion homeToWorld) Initializes background model.void
reset()
Resets model to its original stateprotected void
updateBackground
(int x0, int y0, int x1, int y1, T frame) Call to update the background with the frame inside the bounding box.Methods inherited from class boofcv.alg.background.BackgroundModelMoving
segment, updateBackground
Methods inherited from class boofcv.alg.background.BackgroundModel
getImageType, getUnknownValue, setUnknownValue
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.alg.background.BackgroundAlgorithmGaussian
getInitialVariance, getLearnRate, getMinimumDifference, getThreshold, setInitialVariance, setLearnRate, setMinimumDifference, setThreshold
-
Field Details
-
_interpolationInput
-
_interpolationBG
-
inputWrapper
-
background
-
helpers
protected final GrowArray<BackgroundMovingGaussian_SB<T extends ImageGray<T>,Motion extends InvertibleTransform<Motion>>.boofcv.alg.background.moving.BackgroundMovingGaussian_SB.Helper> helpers -
helper
protected final BackgroundMovingGaussian_SB<T extends ImageGray<T>,Motion extends InvertibleTransform<Motion>>.boofcv.alg.background.moving.BackgroundMovingGaussian_SB.Helper helper
-
-
Constructor Details
-
BackgroundMovingGaussian_SB
public BackgroundMovingGaussian_SB(float learnRate, float threshold, Point2Transform2Model_F32<Motion> transform, InterpolationType interpType, Class<T> imageType) Configurations background removal.- Parameters:
learnRate
- Specifies how quickly the background is updated. 0 = static 1.0 = instant. Try 0.05threshold
- Threshold for background. Try 10.transform
- Used to apply motion modelinterpType
- Type of interpolation. BILINEAR recommended for accuracy. NEAREST_NEIGHBOR for speed. .imageType
- Type of input image.
-
-
Method Details
-
initialize
Description copied from class:BackgroundModelMoving
Initializes background model. Specifies the size of the background image and transform from the "home" image to the background "world"- Specified by:
initialize
in classBackgroundModelMoving<T extends ImageGray<T>,
Motion extends InvertibleTransform<Motion>> - Parameters:
backgroundWidth
- Width of backgroundbackgroundHeight
- Height of backgroundhomeToWorld
- Transform from home to world.
-
reset
public void reset()Description copied from class:BackgroundModel
Resets model to its original state- Specified by:
reset
in classBackgroundModel<T extends ImageGray<T>>
-
updateBackground
Description copied from class:BackgroundModelMoving
Call to update the background with the frame inside the bounding box. Implementing class needs to make sure the rectangle is inside the background.- Specified by:
updateBackground
in classBackgroundModelMoving<T extends ImageGray<T>,
Motion extends InvertibleTransform<Motion>>
-
_segment
- Specified by:
_segment
in classBackgroundModelMoving<T extends ImageGray<T>,
Motion extends InvertibleTransform<Motion>>
-