You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3dpcp/.svn/pristine/0d/0d7064884e4baa083afed5768ef...

22 lines
645 B
Plaintext

/**
* @file HOG-Man wrapper
* @author Jochen Sprickerhof. Institute of Computer Science, University of Osnabrueck, Germany.
*/
#ifndef __LOOP_HOG_MAN_H__
#define __LOOP_HOG_MAN_H__
#include "loopSlam6D.h"
class loopHOGMan : public loopSlam6D {
public:
loopHOGMan(bool _quiet, icp6Dminimizer *my_icp6Dminimizer, double mdm, int max_num_iterations,
int rnd, bool eP, int anim, double epsilonICP, int nns_method)
: loopSlam6D(_quiet, my_icp6Dminimizer, mdm, max_num_iterations, rnd, eP, anim, epsilonICP, nns_method) {}
virtual void close_loop(const vector <Scan *> &allScans, int first, int last, graph_t &g);
};
#endif