OpenCV (Open Source Computer Vision) is a cross-platform library of programming functions for real time computer vision.

learn more… | top users | synonyms

0
votes
0answers
70 views

How to adjust Foreground extraction in prediction

This is my program for ForegroundExtraction, which I've made into a function: int ForegroundExtraction() { VideoCapture capture("recognition.mp4"); if (!capture.isOpened()) return 0; ...
0
votes
2answers
2k views

OpenCV 2.4.5 face detection C++ code - optimization

This code is supposed to grab live camera feed, display feed in a window, mark in rectangles all detected faces, get the biggest detected face (by total area), display it in separate window, convert ...
2
votes
1answer
446 views

Density-based clustering of image keypoints

I have implemented the DBSCAN algorithm for clustering image keypoints, I'm using C++ and OpenCV, I have been following the pseudocode on the wiki page pretty strictly and its working but I get the ...