00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef SEQUENCEFILEHEADER_H
00017 #define SEQUENCEFILEHEADER_H
00018
00019 #define MAX_BYTE 1073741824
00020 #define MAX_NUM_CAMERAS 20
00022 #define VERSION_0_TYPE "RoadLab_File_Sequence\0"
00023
00024 #include <cstring>
00025
00027 typedef enum RL_ColorFormat {
00028 INVALID_COLORFORMAT = -1,
00029 RGB,
00030 GRAYSCALE,
00031 } COLORFORMAT;
00032
00034 typedef enum RL_FPS {
00035 INVALID_FPS = -1,
00036 FPS30,
00037 FPS15,
00038 FPS7_5,
00039 FPS3_75,
00040 } FPS;
00041
00043 typedef enum RL_Version {
00044 INVALID_VERSION = -1,
00045 VERSION_0
00046 } VERSION;
00047
00049 typedef struct sequenceHeader {
00050 char filetype[23];
00051 unsigned int width;
00052 unsigned int height;
00053 unsigned int numCameras;
00054 unsigned int serialNumbers[MAX_NUM_CAMERAS];
00055 COLORFORMAT format;
00056 FPS fps;
00058
00060 } SEQUENCE_HEADER;
00061
00062 class RL_SequenceFileHeader
00063 {
00064 public:
00065
00066 RL_SequenceFileHeader(unsigned int nCam, unsigned int* serials);
00067
00068
00069 RL_SequenceFileHeader();
00070
00071 virtual ~RL_SequenceFileHeader();
00072
00073 void SetResolution(int width, int height);
00074 void SetCameras(unsigned int* serials, unsigned int numOfCameras);
00075 void SetFPS(FPS fps);
00076 void SetColor(COLORFORMAT color);
00077
00078 unsigned int GetNumberOfCameras();
00079 unsigned int GetWidth();
00080 unsigned int GetHeight();
00081
00082
00083 VERSION GetVersion();
00084 void GetSerials(unsigned int* serials);
00085 FPS GetFPS();
00086 COLORFORMAT GetColor();
00087
00088
00089 SEQUENCE_HEADER* GetHeader();
00090 protected:
00091
00092 private:
00093 SEQUENCE_HEADER seqFileHeader;
00094 };
00095
00096 #endif