-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDrawRawData.h
More file actions
executable file
·48 lines (39 loc) · 1.16 KB
/
DrawRawData.h
File metadata and controls
executable file
·48 lines (39 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* @file DrawRawData.h
* @ingroup Drawing
* @author Dominique Vaufreydaz, Grenoble Alpes University, Inria
* @copyright All right reserved.
*/
#ifndef __DRAW_RAW_DATA_H__
#define __DRAW_RAW_DATA_H__
#ifdef KINECT_2
#include "../Kinect/KinectBasics.h"
#endif
#include "DrawTimestampRawData.h"
#include "Drawable.h"
namespace MobileRGBD {
/**
* @class DrawRawData DrawRawData.cpp DrawRawData.h
* @brief DrawRawData is a intermediate class only to instanciate DrawTimestampRawData properly.
*
* @author Dominique Vaufreydaz, Grenoble Alpes University, Inria
*/
class DrawRawData : public DrawTimestampRawData
{
public:
/** @brief constructor. Draw localization from the robot.
*
* @param WorkingFile [in] Timestamp file name.
* @param RawFile [in] Associated raw file name.
* @param SizeOfFrame [in] Size of each frame in raw file.
*/
DrawRawData( const std::string& WorkingFile, const std::string& RawFile, int SizeOfFrame )
: DrawTimestampRawData( WorkingFile, RawFile, SizeOfFrame )
{
}
/** @brief Virtual destructor, always.
*/
virtual ~DrawRawData() {}
};
} // namespace MobileRGBD
#endif // __DRAW_RAW_DATA_H__