OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
common.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_CORE_COMMON_HPP
2 #define OPENPOSE_CORE_COMMON_HPP
3 
4 // Std library most used classes
5 #include <array>
6 #include <memory> // std::shared_ptr, std::unique_ptr
7 #include <string>
8 #include <vector>
9 // OpenPose most used classes
10 #include <openpose/core/array.hpp>
12 #include <openpose/core/macros.hpp>
13 #include <openpose/core/matrix.hpp>
14 #include <openpose/core/point.hpp>
16 #include <openpose/core/string.hpp>
19 // Datum at the end, otherwise circular dependency with array, point & rectangle
20 #include <openpose/core/datum.hpp>
21 
22 #endif // OPENPOSE_CORE_COMMON_HPP