[ADD] comments

This commit is contained in:
Sem van der Hoeven
2021-06-08 10:43:59 +02:00
parent e70d2ef19d
commit bb68d98bfe

View File

@@ -33,9 +33,20 @@ namespace computervision
*/ */
void SetBackGroundCalibrated(bool val); void SetBackGroundCalibrated(bool val);
/**
* @brief sets the value for if the hand is present.
*
* @param val the value to set.
*/
void SetHandPresent(bool val);
/**
* @brief checks if the hand is present in the given image
*
* @param input_image the input image to check.
*/
bool CheckIfHandPresent(cv::Mat input_image); bool CheckIfHandPresent(cv::Mat input_image);
void SetHandPresent(bool val);
}; };
} }