libvibe++ : a generic C++ library for the ViBe algorithm
types.h
1 /* Copyright - Benjamin Laugraud <blaugraud@ulg.ac.be> - 2016
2  * Copyright - Marc Van Droogenbroeck <m.vandroogenbroeck@ulg.ac.be> - 2016
3  *
4  * ViBe is covered by a patent (see http://www.telecom.ulg.ac.be/research/vibe).
5  *
6  * Permission to use ViBe without payment of fee is granted for nonprofit
7  * educational and research purposes only.
8  *
9  * This work may not be copied or reproduced in whole or in part for any
10  * purpose.
11  *
12  * Copying, reproduction, or republishing for any purpose shall require a
13  * license. Please contact the authors in such cases. All the code is provided
14  * without any guarantee.
15  */
16 #ifndef _LIB_VIBE_XX_SYSTEM_TYPES_H_
17 #define _LIB_VIBE_XX_SYSTEM_TYPES_H_
18 
19 #include <boost/cstdint.hpp>
20 
21 namespace ViBe {
22  typedef boost::int8_t int8_t;
23  typedef boost::int32_t int32_t;
24 
25  typedef boost::uint8_t uint8_t;
26  typedef boost::uint32_t uint32_t;
27 }
28 
29 #endif /* _LIB_VIBE_XX_SYSTEM_TYPES_H_ */

License/Copyright

This code is copyrighted by the University of Liège, Belgium. 
It is only shared for research purposes. Please do not distribute it. 
B. Laugraud and M. Van Droogenbroeck, May 2016.