From bb68d98bfe1ebd0fd61180d60f037f260adb9cf1 Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Tue, 8 Jun 2021 10:43:59 +0200 Subject: [PATCH] [ADD] comments --- src/computervision/calibration/HandCalibrator.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/computervision/calibration/HandCalibrator.h b/src/computervision/calibration/HandCalibrator.h index 40fdd95..f402adb 100644 --- a/src/computervision/calibration/HandCalibrator.h +++ b/src/computervision/calibration/HandCalibrator.h @@ -33,9 +33,20 @@ namespace computervision */ 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); - void SetHandPresent(bool val); }; }