OpenPose  1.0.0rc2
OpenPose: A Real-Time Multi-Person Key-Point Detection And Multi-Threading C++ Library
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros
wrapperStructOutput.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_WRAPPER_WRAPPER_STRUCT_OUTPUT_HPP
2 #define OPENPOSE_WRAPPER_WRAPPER_STRUCT_OUTPUT_HPP
3 
6 
7 namespace op
8 {
14  {
18  bool displayGui;
19 
24  bool guiVerbose;
25 
30  bool fullScreen;
31 
37  std::string writeKeypoint;
38 
45 
54  std::string writeJson;
55 
60  std::string writeCocoJson;
61 
66  std::string writeImages;
67 
74  std::string writeImagesFormat;
75 
81  std::string writeVideo;
82 
88  std::string writeHeatMaps;
89 
94  std::string writeHeatMapsFormat;
95 
101  WrapperStructOutput(const bool displayGui = false, const bool guiVerbose = false,
102  const bool fullScreen = false, const std::string& writeKeypoint = "",
103  const DataFormat writeKeypointFormat = DataFormat::Xml,
104  const std::string& writeJson = "", const std::string& writeCocoJson = "",
105  const std::string& writeImages = "", const std::string& writeImagesFormat = "",
106  const std::string& writeVideo = "", const std::string& writeHeatMaps = "",
107  const std::string& writeHeatMapsFormat = "");
108  };
109 }
110 
111 #endif // OPENPOSE_WRAPPER_WRAPPER_STRUCT_OUTPUT_HPP
bool guiVerbose
Definition: wrapperStructOutput.hpp:24
std::string writeHeatMapsFormat
Definition: wrapperStructOutput.hpp:94
std::string writeKeypoint
Definition: wrapperStructOutput.hpp:37
std::string writeImages
Definition: wrapperStructOutput.hpp:66
DataFormat
Definition: enumClasses.hpp:6
std::string writeHeatMaps
Definition: wrapperStructOutput.hpp:88
std::string writeCocoJson
Definition: wrapperStructOutput.hpp:60
bool fullScreen
Definition: wrapperStructOutput.hpp:30
DataFormat writeKeypointFormat
Definition: wrapperStructOutput.hpp:44
std::string writeJson
Definition: wrapperStructOutput.hpp:54
std::string writeVideo
Definition: wrapperStructOutput.hpp:81
#define OP_API
Definition: macros.hpp:9
std::string writeImagesFormat
Definition: wrapperStructOutput.hpp:74
bool displayGui
Definition: wrapperStructOutput.hpp:18
Definition: wrapperStructOutput.hpp:13