Search in sources :

Example 1 with EssentialNister5

use of boofcv.alg.geo.f.EssentialNister5 in project BoofCV by lessthanoptimal.

the class TestGeoModelEstimatorNto1 method createSolution.

private DMatrixRMaj createSolution() {
    EssentialNister5 nister = new EssentialNister5();
    FastQueue<DMatrixRMaj> solutions = new QueueMatrix(3, 3);
    assertTrue(nister.process(obs, solutions));
    return solutions.get(0);
}
Also used : DMatrixRMaj(org.ejml.data.DMatrixRMaj) EssentialNister5(boofcv.alg.geo.f.EssentialNister5) QueueMatrix(boofcv.struct.geo.QueueMatrix)

Aggregations

EssentialNister5 (boofcv.alg.geo.f.EssentialNister5)1 QueueMatrix (boofcv.struct.geo.QueueMatrix)1 DMatrixRMaj (org.ejml.data.DMatrixRMaj)1