#ifndef OPENPOSE_UTILITIES_FLAGS_TO_OPEN_POSE_HPP #define OPENPOSE_UTILITIES_FLAGS_TO_OPEN_POSE_HPP #include #include #include #include #include #include namespace op { OP_API PoseMode flagsToPoseMode(const int poseModeInt); OP_API PoseModel flagsToPoseModel(const String& poseModeString); OP_API ScaleMode flagsToScaleMode(const int keypointScaleMode); OP_API ScaleMode flagsToHeatMapScaleMode(const int heatMapScaleMode); OP_API Detector flagsToDetector(const int detector); // Determine type of frame source OP_API ProducerType flagsToProducerType( const String& imageDirectory, const String& videoPath, const String& ipCameraPath, const int webcamIndex, const bool flirCamera); OP_API std::pair flagsToProducer( const String& imageDirectory, const String& videoPath, const String& ipCameraPath = String(""), const int webcamIndex = -1, const bool flirCamera = false, const int flirCameraIndex = -1); OP_API std::vector flagsToHeatMaps( const bool heatMapsAddParts = false, const bool heatMapsAddBkg = false, const bool heatMapsAddPAFs = false); OP_API RenderMode flagsToRenderMode( const int renderFlag, const bool gpuBuggy = false, const int renderPoseFlag = -2); OP_API DisplayMode flagsToDisplayMode(const int display, const bool enabled3d); /** * E.g., const Point netInputSize = flagsToPoint(op::String(FLAGS_net_resolution), "-1x368"); * E.g., const Point resolution = flagsToPoint(resolutionString, "1280x720"); */ OP_API Point flagsToPoint(const String& pointString, const String& pointExample); } #endif // OPENPOSE_UTILITIES_FLAGS_TO_OPEN_POSE_HPP