Queue size configurable through wrapper and cleaned examples

This commit is contained in:
gineshidalgo99
2019-01-20 23:58:29 -05:00
parent 5f768fe52b
commit efdf39d6d7
19 changed files with 306 additions and 298 deletions
@@ -28,7 +28,7 @@ void display(const std::shared_ptr<std::vector<std::shared_ptr<op::Datum>>>& dat
if (datumsPtr != nullptr && !datumsPtr->empty())
{
// Display image
cv::imshow("User worker GUI", datumsPtr->at(0)->cvOutputData);
cv::imshow(OPEN_POSE_NAME_AND_VERSION + " - Tutorial C++ API", datumsPtr->at(0)->cvOutputData);
cv::waitKey(0);
}
else