Files
SDBA/src/computervision/OpenPoseVideo.h
Sem van der Hoeven 921609de5d [EDIT] stuff
2021-06-04 11:39:23 +02:00

20 lines
348 B
C++

#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, std::function<void(std::vector<Point>&, cv::Mat& poinst_on_image)> f);
void setup();
};
}