[ADD] added all the files

This commit is contained in:
Jasper
2021-05-28 12:27:12 +02:00
parent f1f1aac93d
commit 078a6ce66d
8 changed files with 5383 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
#include <opencv2/dnn.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <iostream>
using namespace cv;
namespace computervision
{
class OpenPoseVideo{
private:
public:
void movementSkeleton(Mat inputImage);
void setup();
};
}