[ADD] start of multiple squares

This commit is contained in:
Sem van der Hoeven
2021-06-08 11:54:48 +02:00
parent afd3e00ddb
commit ef470bd4f1
6 changed files with 85 additions and 11 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include <opencv2/core.hpp>
namespace computervision
{
class HandDetectRegion
{
public:
HandDetectRegion();
cv::Mat GenerateHandMaskSquare();
void detectHand(cv::Mat camera_frame);
private:
int start_x_pos;
int start_y_pos;
int height;
int width;
};
}