OpenCV (Open Source Computer Vision) is a cross-platform library of programming functions for real time computer vision.
3
votes
1answer
35 views
Combining multiple files of uncommon filetype into one
I've created a utility program for combining multiple .vec files into one. The program's main application is in training haar cascade classifiers in openCV (details). This is my first open source ...
1
vote
0answers
186 views
Track a fix area with meanshift -OpenCV
I need your help in OpenCV. I'm a student and am working on a project in which involves a little autonomous car. I use Python for the main programming language.
I have some problem with my meanshift. ...
2
votes
0answers
99 views
Replace subimage by its average value
I have the input image in, and the mask image lev (which label each pixel as a number from 1 to ...
0
votes
2answers
11k views
OpenCV 2.4.5 face detection
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 ...
6
votes
3answers
2k views
Density-based clustering of image keypoints
I have implemented the DBSCAN algorithm for clustering image keypoints. I have been following the pseudocode on the wiki page pretty strictly, and it's working, but I get the feeling its a very naive ...
8
votes
1answer
255 views
OpenCV Mat processing time
I'd like to know whether having different variables for the src (source) and dst (destination) of an OpenCV function will have an effect on the processing time. I have two functions below
that does ...