AI Watch A1
Multi-person 3D skeleton detection using Intel RealSense and OpenPose with Kafka support.
OutputManager.cpp
Go to the documentation of this file.
1//
2// OutputManager.cpp
3// AI Watch A1
4//
5// Created by Denny Caruso on 23/07/22.
6//
7
8// License: Apache 2.0. See LICENSE file in root directory.
9// Copyright(c) 2022. All Rights Reserved.
10
11#include "OutputManager.hpp"
12
13
14
15void OutputManager::setStringOutputData (std::string stringOutputData) {
16 this->stringOutputData = stringOutputData;
17}
18
20 return this->stringOutputData;
21}
void setStringOutputData(std::string stringOutputData)
Set the output file's content.
std::string getStringOutputData(void)
Get the output file's content.
std::string stringOutputData
Output file's content.