Skip to content

Instantly share code, notes, and snippets.

View palikar's full-sized avatar
🙃
Develpoing

Stanislav Arnaudov palikar

🙃
Develpoing
  • Karlsruhe, Germnay
View GitHub Profile
@palikar
palikar / opencv_skin_segmentation.cpp
Created October 17, 2018 11:27 — forked from ndrplz/opencv_skin_segmentation.cpp
Simple hand segmentation from the webcam streaming.
#include <opencv2\opencv.hpp>
using namespace cv;
using std::cout;
/*--------------- SKIN SEGMENTATION ---------------*/
int main () {
VideoCapture cap(0);
if(!cap.isOpened())