SamplesAndInliersDataRefiner.java
/*
* Copyright (C) 2017 Alberto Irurueta Carro (alberto@irurueta.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.irurueta.geometry.refiners;
import com.irurueta.geometry.estimators.LockedException;
import com.irurueta.numerical.robust.InliersData;
import java.util.BitSet;
import java.util.List;
/**
* Refines an instance of type T by taking into account an initial estimation,
* inlier samples, their residuals and a collection of samples.
* This class can be used to find a solution that minimizes error of inliers in
* LMSE terms.
* Typically, a refiner is used by a robust estimator, however it can also be
* useful in some other situations.
*
* @param <T> type of instance to be refined.
* @param <S> type of samples.
*/
public abstract class SamplesAndInliersDataRefiner<T, S> extends InliersDataRefiner<T> {
/**
* Collection of samples.
*/
protected List<S> samples;
/**
* Constructor.
*/
protected SamplesAndInliersDataRefiner() {
}
/**
* Constructor.
*
* @param initialEstimation initial estimation to be set.
* @param keepCovariance true if covariance of estimation must be kept after
* refinement, false otherwise.
* @param inliers set indicating which of the provided matches are inliers.
* @param residuals residuals for matched samples.
* @param numInliers number of inliers on initial estimation.
* @param samples collection of samples.
*/
protected SamplesAndInliersDataRefiner(
final T initialEstimation, final boolean keepCovariance, final BitSet inliers, final double[] residuals,
final int numInliers, final List<S> samples) {
super(initialEstimation, keepCovariance, inliers, residuals, numInliers);
this.samples = samples;
}
/**
* Constructor.
*
* @param initialEstimation initial estimation to be set.
* @param keepCovariance true if covariance of estimation must be kept after
* refinement, false otherwise.
* @param inliersData inlier data, typically obtained from a robust
* estimator.
* @param samples collection of samples.
*/
protected SamplesAndInliersDataRefiner(
final T initialEstimation, final boolean keepCovariance, final InliersData inliersData,
final List<S> samples) {
super(initialEstimation, keepCovariance, inliersData);
this.samples = samples;
}
/**
* Gets collection of samples.
*
* @return collection of samples.
*/
public List<S> getSamples() {
return samples;
}
/**
* Sets collection of samples.
*
* @param samples collection of samples.
* @throws LockedException if estimator is locked.
*/
public void setSamples(final List<S> samples) throws LockedException {
if (isLocked()) {
throw new LockedException();
}
this.samples = samples;
}
/**
* Indicates whether this refiner is ready to start refinement computation.
*
* @return true if refiner is ready, false otherwise.
*/
@Override
public boolean isReady() {
return initialEstimation != null && inliers != null && residuals != null && samples != null
&& residuals.length == samples.size() && numInliers > 0;
}
}