diff --git a/src/computervision/ObjectDetection.cpp b/src/computervision/ObjectDetection.cpp index 5f16929..80f28a9 100644 --- a/src/computervision/ObjectDetection.cpp +++ b/src/computervision/ObjectDetection.cpp @@ -2,7 +2,6 @@ #include "ObjectDetection.h" #include "BackgroundRemover.h" #include "SkinDetector.h" -#include "FaceDetector.h" #include "FingerCount.h" namespace computervision @@ -14,7 +13,6 @@ namespace computervision Mat frame, frameOut, handMask, foreground, fingerCountDebug; BackgroundRemover backgroundRemover; SkinDetector skinDetector; - FaceDetector faceDetector; FingerCount fingerCount; @@ -35,8 +33,6 @@ namespace computervision skinDetector.drawSkinColorSampler(frameOut); foreground = backgroundRemover.getForeground(frame); - - faceDetector.removeFaces(frame, foreground); handMask = skinDetector.getSkinMask(foreground); fingerCountDebug = fingerCount.findFingersCount(handMask, frameOut); diff --git a/wk2_fps.vcxproj b/wk2_fps.vcxproj index 0280bbf..82f0b8e 100644 --- a/wk2_fps.vcxproj +++ b/wk2_fps.vcxproj @@ -21,7 +21,6 @@ - @@ -42,7 +41,6 @@ - diff --git a/wk2_fps.vcxproj.filters b/wk2_fps.vcxproj.filters index 43dc17b..eaddce7 100644 --- a/wk2_fps.vcxproj.filters +++ b/wk2_fps.vcxproj.filters @@ -57,9 +57,6 @@ Source Files - - Source Files - Source Files @@ -125,9 +122,6 @@ Header Files - - Header Files - Header Files