36 lines
918 B
Text
36 lines
918 B
Text
/**
|
|
* @file
|
|
* @brief IO of a 3D scan in uos file format
|
|
* @author Kai Lingemann. Institute of Computer Science, University of Osnabrueck, Germany.
|
|
* @author Andreas Nuechter. Institute of Computer Science, University of Osnabrueck, Germany.
|
|
*/
|
|
|
|
#ifndef __SCAN_IO_UOS_RGB_H__
|
|
#define __SCAN_IO_UOS_RGB_H__
|
|
|
|
#include <string>
|
|
using std::string;
|
|
#include <vector>
|
|
using std::vector;
|
|
|
|
#include "slam6d/scan_io.h"
|
|
|
|
/**
|
|
* @brief 3D scan loader for UOS scans with color information
|
|
*
|
|
* The compiled class is available as shared object file
|
|
*/
|
|
class ScanIO_uos_rgb : public ScanIO {
|
|
public:
|
|
virtual int readScans(int start, int end, string &dir, int maxDist, int mindist,
|
|
double *euler, vector<Point> &ptss);
|
|
};
|
|
|
|
// Since this shared object file is loaded on the fly, we
|
|
// need class factories
|
|
|
|
// the types of the class factories
|
|
typedef ScanIO* create_sio();
|
|
typedef void destroy_sio(ScanIO*);
|
|
|
|
#endif
|