-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.h
45 lines (38 loc) · 891 Bytes
/
main.h
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
/*!
* \file main.h
* \author Gabriel Urbain <[email protected]> - Visiting student at MIT SSL
* \date June 2014
* \version 0.1
* \brief Headers of the main program
*
* License: The MIT License (MIT)
* Copyright (c) 2014, Massachussets Institute of Technology
*/
#ifndef MAIN_HH
#define MAIN_HH
// Project libs
#include "defines.h"
#include "camera.h"
// OpenCV libs
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/highgui/highgui.hpp"
// Common libs
#include <sys/utsname.h>
#include <stdint.h>
#include <iomanip>
#include <limits>
#include <stdio.h>
#include <iostream>
#include <string>
#include <stdlib.h>
#include <time.h>
#include <sys/types.h>
#include <unistd.h>
#include <linux/version.h>
#include <fstream>
#include <signal.h>
void init();
int main(int argc, char **argv);
#endif