Exemplo n.º 1
0
 public Ransac(int numIters, ITransform
               transform, double maxError)
 {
     _rnd        = new Random();
     _numIters   = numIters;
     _numSamples = transform.GetNumSamples();
     _transform  = transform;
     MaxError    = maxError;
 }