[ADD] start for object detection

This commit is contained in:
Sem van der Hoeven
2021-05-21 11:19:17 +02:00
parent ca0f7546bf
commit ab3b0c296a
5 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#pragma once
#include <opencv2/imgcodecs.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/objdetect.hpp>
#include <opencv2/videoio.hpp>
#include <opencv2/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
namespace computervision
{
class ObjectDetection
{
private:
public:
ObjectDetection();
void readWebcam();
void showWebcam();
void calculateDifference();
};
}