OpenCV (Open Source Computer Vision) is a cross-platform library of programming functions for real time computer vision. Officially launched by Intel in 1999 and now supported by Willow Garage.

learn more… | top users | synonyms

42
votes
12answers
32k views

iPhone and OpenCV

I know that OpenCV was ported to Mac OS X, however I did not find any info about a port to the iPhone. I am not a Mac developer, so that I do not know whether a Mac OS X port is enough for the ...
29
votes
3answers
891 views

Extracting segments from a list of 8-connected pixels

Current situation : I'm trying to extract segments from an image. Thanks to openCV's findContours() method, I now have a list of 8-connected point for every contours. However, these lists are not ...
20
votes
7answers
5k views

How can I determine distance from an object in a video?

I have a video file recorded from the front of a moving vehicle. I am going to use OpenCV for object detection and recognition but I'm stuck on one aspect. How can I determine the distance from a ...
17
votes
13answers
25k views

Increasing camera capture resolution in OpenCV

In my C/C++ program, I'm using OpenCV to capture images from my webcam. The camera (Logitech QuickCam IM) can capture at resolutions 320x240, 640x480 and 1280x960. But, for some strange reason, OpenCV ...
16
votes
1answer
485 views

OpenCV sequences — how to create a sequence of point pairs?

I'm trying to create an empty sequence (CvSeq) in OpenCV similar in structure to the one returned by, for example, cvHoughLines2 (when used in CV_HOUGH_PROBABILISTIC) - a sequence of point pairs. I ...
14
votes
3answers
9k views

OpenCV / SURF How to generate a image hash / fingerprint / signature out of the descriptors?

There are some topics here that are very helpful on how to find similar pictures. What I want to do is to get a fingerprint of a picture and find the same picture on different photos taken by a ...
14
votes
3answers
5k views

Differences between AForge and OpenCV

I am just learning about computer vision and C#. It seems like two prominent image processing libraries are OpenCV and AForge. What are some of the differences of the two? I am making a basic image ...
12
votes
3answers
922 views

Algorithm to detect corners of paper sheet in photo

What is the best way to detect the corners of an invoice/receipt/sheet-of-paper in a photo? This is to be used for subsequent perspective correction, before OCR. My current approach has been: RGB > ...
12
votes
4answers
11k views

How can I detect and track people using OpenCV?

I have a camera that will be stationary, pointed at an indoors area. People will walk past the camera, within about 5 meters of it. Using OpenCV, I want to detect individuals walking past - my ideal ...
12
votes
5answers
8k views

Fill the holes in OpenCV

I have an edge map extracted from edge detection module in OpenCV (canny edge detection). What I want to do is to fill the holes in the edge map. I am using C++, and OpenCV libraries. In OpenCV ...
11
votes
1answer
191 views

Hidden Markov Models with C++

I've been looking into implementations of Hidden Markov Models in C++ lately. I was wondering If I could use any of the existing HMM libraries written in C++ out there to use with Action Recognition ...
11
votes
2answers
423 views

Object detection + segmentation

I 'm trying to find an efficient way of acceptable complexity to detect an object in an image so I can isolate it from its surroundings segment that object to its sub-parts and label them so I can ...
11
votes
1answer
1k views

How to detect gestures in OpenKinect (with python wrappers)

I've started looking into OpenKinect development, and to start, I'm trying to figure out how to look for certain gestures done by the person. Are there any tutorials out there on how to do this? Or ...
11
votes
3answers
10k views

Java OpenCV Bindings

I am looking for OpenCV java bindings, all the references point to the processing library. I know processing is java but isn't there a standalone java lib? or should just use processing libs?
11
votes
3answers
4k views

Eigenvector computation using OpenCV

I have this matrix A, representing similarities of pixel intensities of an image. For example: Consider a 10 x 10 image. Matrix A in this case would be of dimension 100 x 100, and element A(i,j) would ...
11
votes
3answers
4k views

.Net (dotNet) wrappers for OpenCV?

I've seen there are a few of them. opencvdotnet, SharperCV, EmguCV, One on Code Project. Does anyone have any experience with any of these? I played around with the one on Code Project for a bit, ...
10
votes
1answer
168 views

How to find a fix number of (almost) fixed proportion rectangles with opencv?

I am writing a simple fly tracking software and I would love some input from opencv experts. The image I have looks pretty much like: I used to do tracking using kmeans and PIL/numpy but I ...
10
votes
3answers
15k views

linux/videodev.h : no such file or directory - OpenCV on ubuntu 11.04

I tried to install OpenCV2.2 on Ubuntu 11.04. But OpenCV compilation fails stating an error related to linux/videodev.h file. File available in /user/includes/linux is named videodev2.h. ...
10
votes
3answers
3k views

How to use OpenCV in Python?

I have just installed OpenCV on my Windows 7 machine. As a result I get a new directory: C:\OpenCV2.2\Python2.7\Lib\site-packages In this directory I have two files: cv.lib and cv.pyd. Then I try ...
10
votes
3answers
2k views

How to track Finger tip in OpenCV or OpenFrameworks?

I want to develop a program which uses the webcam to track finger tips. When tracked, the finger tip will be like an index and I will be able to get its positions even if it is moved around. If anyone ...
10
votes
5answers
2k views

detect color space with openCV

how can I see the color space of my image with openCV ? I would like to be sure it is RGB, before to convert to another one using cvCvtColor() function thanks
10
votes
2answers
17k views

Convert RGB to Black & White in OpenCV

i need to know the function that convert RGB image into black &white(binary image) & i need to know if i can save modified image after conversion on hard disk if so what's this function?
9
votes
1answer
201 views

OpenCV 2.3.1: how to tell if haartraining is stuck or still working (on TINY example)

I am using opencv_haartraining for the first time, using OpenCV 2.3.1 on Mac OS X Lion. I am trying to train a very quick example. I am only using 23 positive examples and 45 negative examples. Yet ...
9
votes
2answers
115 views

Supervised Motion Detection Library

Can anyone recommend a motion detection library that's trainable via a supervised learning algorithm? I have an IP webcam that I'm trying to detect motion from. I'm been using the motion software ...
9
votes
5answers
781 views

People Counting System

I want to develop a "People Counting System" using OpenCV (or Emgu CV). Please guide me on how to implement or lead me to some examples or open source projects. (I have done some work: extracting ...
9
votes
3answers
325 views

Crash when running application due to existence of unexecuted code in source file - c++

I'm working on a pretty tricky problem that I've been on for literally a week now. I've hit a very hard wall and my forehead hurts from banging it so I'm hoping someone can help me out. I am using ...
9
votes
2answers
772 views

Removing sinusoidal noise with Butterworth filter

I'm trying to remove the sinusoidal noise in this image: Here is its DFT spectrum (after applying log and arbitrary intensity scaling): I already have a Butterworth filter to apply to this ...
9
votes
2answers
4k views

Face Detection in Android?

I am currently working on an experimental camera app. I'm looking into implementing face detection at the moment and am currently weighing up my options. I have considered the OpenCV port available ...
9
votes
4answers
2k views

OpenCV: IplImage versus Mat, which to use?

I'm pretty new to OpenCV (about 2 months now). I have the book Learning OpenCV by Bradski and Kaehler. My question is, if I want to do everything in a 2.0+ manner, when should I use Matrices (Mat) and ...
9
votes
4answers
4k views

Computer Vision and AR libraries availabe for Android?

I am starting out as an Android Developer, and I would like to know if there are any Computer vision libraries or Augmented Reality libraries for the Android SDK, as I am planning to use these ...
9
votes
4answers
10k views

opencv multi channel element access

I'm trying to learn how to use openCV's new c++ interface. How do I access elements of a multi channel matrix. for example: Mat myMat(size(3, 3), CV_32FC2); for (int i = 0; i < 3; ++i) { for ...
9
votes
4answers
28k views

OpenCV Object Detection - Center Point

Given an object on a plain white background, does anybody know if OpenCV provides functionality to easily detect an object from a captured frame? I'm trying to locate the corner/center points of an ...
8
votes
1answer
704 views

Problem using OpenCV2.3.1 with Android Native Activity

i'm developing a computer vision application for Android. That work involves getting camera frames as fast as possible, so I'm trying to build a android application directly in c++ using ...
8
votes
4answers
1k views

shapes detection - contour approximation with OpenCV

I'm writing small application for shape detections. What I need to do in a first place is to find the most significant shape on an image. I started from some preprocessing including converting image ...
8
votes
3answers
214 views

What kind of descriptor should I use for seal cub detection?

I have a project to detect and count seal cubs (the animal) in an aerial image which is taken from beach. The seal cubs are black and small compared to adult seals which are brown and large. Some ...
8
votes
3answers
3k views

simple and fast method to compare images for similarity

I need a simple and fast way to compare two images for similarity. I.e. I want to get a high value if they contain exactly the same thing but may have some slightly different background and may be ...
8
votes
1answer
899 views

Why are there 3 conflicting OpenCV camera calibration formulas?

I'm having a problem with OpenCV's various parameterization of coordinates used for camera calibration purposes. The problem is that three different sources of information on image distortion formulae ...
8
votes
2answers
3k views

How can I save and read from XML the new C++ style matrix objects in OpenCV?

The old, C style cvMat matrices could be passed to the cvSave() function for easy writing to an XML file. The new C++ style cv::Mat and cv::Mat_ matrices are not accepted by this function. The OpenCV ...
8
votes
1answer
3k views

Issue with reading an image using “cv::imread” function in OpenCv

I have got a problem with some basic OpenCV code. Here is my code: cv::Mat src; src=imread("Calibration.bmp",0); if (src.empty()) cout << "Cannot load image" << " "; else cout ...
8
votes
3answers
11k views

OpenCV: how to rotate IplImage?

I need to rotate an image by very small angle, like 1-5 degrees. Does OpenCV provide simple way of doing that? From reading docs i can assume that getAffineTransform() should be involved, but there is ...
8
votes
3answers
3k views

Face detection and comparison

I'm running a small research on face detection and comparison for my article. Currently, I'm using rapid face detection based on haar like features based on OpenCV cascade (I'll implement learning ...
7
votes
1answer
179 views

OpenCV C++/Obj-C: Proper object detection

As some kind of "holiday project" I'm playing around with OpenCV and want to detect and measure stuff. Current workflow (early stage - detection): Convert to grayscale (cv::cvtColor) Apply ...
7
votes
4answers
324 views

Is there a way to detect if an image is blurry?

I was wondering if there is a way to determine if an image is blurry or not by analyzing the image data.
7
votes
2answers
8k views

OpenCV 2.3 C++ Visual Studio 2010

I'm trying to use opencv 2.3 with Visual Studio 2010 Express. My code is from example: #include "stdafx.h" #include <highgui.h> int _tmain(int argc, _TCHAR* argv[]) { int c; // ...
7
votes
1answer
1k views

OpenCV + OpenGL + Qt

I'm designing my own augmented reality application. I have already detected the 4 corners for the patterns I'm working with. After detecting the 4 corners in a proper order I'm passing them into ...
7
votes
4answers
3k views

Sift implementation with OpenCV 2.2

Does someone know the link of example of SIFT implementation with OpenCV 2.2. regards,
7
votes
4answers
1k views

Face gender detection library

I'm looking for an SDK or library that can detect faces in a webcam stream, and detect gender. Free or paid, C++ or C# under Windows. Any suggestions?
7
votes
1answer
1k views

warning: XXXX has different visibility (default) in YYYY and (hidden) in ZZZZ

I am trying to make an iPhone app that uses OpenCV plus another C++ Library. It seems to compile and link fine. It actually works. Is just I want to get rid of this ugly warning: ld: warning: ...
7
votes
3answers
775 views

Image classification in python

I'm looking for a method of classifying scanned pages that consist largely of text. Here are the particulars of my problem. I have a large collection of scanned documents and need to detect the ...
7
votes
2answers
2k views

Is Learning OpenCV (the book) relevant after OpenCV 2

I'm starting out studying some computer vision (on what I believe would be called "grad school level" in the US) and wish to learn OpenCV. The book "Learning OpenCV" seems like a good place to start, ...

1 2 3 4 5 68