[ADD] start of multiple squares
This commit is contained in:
22
src/computervision/HandDetectRegion.h
Normal file
22
src/computervision/HandDetectRegion.h
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user