[ADD] added comments to the classes FaceDetector and ObjectDetection

This commit is contained in:
Jasper
2021-05-21 15:10:05 +02:00
parent 1811bf51a4
commit 8720e50ba8
3 changed files with 36 additions and 9 deletions

View File

@@ -15,7 +15,17 @@ namespace computervision
{
class FaceDetector {
public:
/**
* @brief Constructor for the class FaceDetector, loads training data from a file
*
*/
FaceDetector(void);
/**
* @brief Detects faces on an image and blocks them with a black rectangle
*
* @param input Input image
* @param output Output image
*/
void removeFaces(Mat input, Mat output);
};
}