use of boofcv.alg.background.stationary.GenericBackgroundStationaryGaussianChecks in project BoofCV by lessthanoptimal.
the class GenericBackgroundMovingGaussianChecks method performStationaryTests.
@Test
void performStationaryTests() {
GenericBackgroundStationaryGaussianChecks stationary = new GenericBackgroundStationaryGaussianChecks() {
@Override
public BackgroundModelStationary create(ImageType imageType) {
BackgroundModelMoving moving = GenericBackgroundMovingGaussianChecks.this.create(imageType);
return new MovingToStationary((BackgroundMovingGaussian) moving, new Homography2D_F32());
}
};
stationary.initialVariance();
stationary.minimumDifference();
stationary.learnRate();
stationary.checkBandsUsed();
}
Aggregations