OpenCV (Open Source Computer Vision) is a cross-platform library of programming functions for real time computer vision. It was officially launched by Intel in 1999 and is now supported by Willow Garage. Uses include: Human-Computer Interaction; Object Identification, Segmentation and ...
22
votes
3answers
33k 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;
// ...
28
votes
2answers
15k views
OpenCV C++/Obj-C: Detecting a sheet of paper / Square Detection
I successfully implemented the OpenCV square-detection example in my test application, but now need to filter the output, because it's quiet messy - or is my code wrong?
I'm interested in the four ...
59
votes
1answer
18k views
Simple Digit Recognition OCR in OpenCV-Python
I am trying to implement a "Digit Recognition OCR" in OpenCV-Python (cv2). ( It is just for learning purposes ). I would like to learn both KNearest and SVM features in OpenCV.
I have 100 ...
72
votes
13answers
51k 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 ...
16
votes
3answers
6k views
Executing cv::warpPerspective for a fake deskewing on a set of cv::Point
I'm trying to do a perspective transformation of a set of points in order to achieve a deskewing effect:
I'm using the image below for tests, and the green rectangle display the area of interest.
...
20
votes
1answer
19k views
Installing OpenCV 2.4.3 in Visual C++ 2010 Express [closed]
How do you install and use OpenCV 2.4.3 under VC++ 2010 Express?
29
votes
5answers
15k 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 ...
24
votes
2answers
12k views
Detection of coins (and fit ellipses) on an image
I am currently working on a project where I am trying to detect a few coins lying on a flat surface (i.e. a desk). The coins do not overlap and are not hidden by other objects. But there might be ...
12
votes
6answers
34k views
OpenCV with Network Cameras
I'm using openCV 1.1pre1 under Windows.
I have a network camera and I need to grab frames from openCV. That camera can stream a standard mpeg4 stream over RTSP or mjpeg over http.
I've seen many ...
10
votes
1answer
6k views
Extracting DCT coefficients from encoded images and video
Is there a way to easily extract the DCT coefficients (and quantization parameters) from encoded images and video? Any decoder software must be using them to decode block-DCT encoded images and ...
9
votes
3answers
16k views
Getting started with OpenCV 2.4 and MinGW on Windows 7
How do I install OpenCV 2.4 and compile my code with MinGW?
22
votes
1answer
5k views
What is different between all these OpenCV Python interfaces?
There are
opencv (the library from the OpenCV guys),
cv (the old library from the OpenCV guys) and
pyopencv with its predecessor ctypes-opencv.
What are the main differences and which one should ...
9
votes
2answers
14k views
Simple object detection using OpenCV and machine learning
I have to code an object detector (in this case, a ball) using OpenCV. The problem is, every single search on google returns me something with FACE DETECTION in it. So i need help on where to start, ...
30
votes
14answers
39k 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 ...
2
votes
4answers
8k views
How to simulate fisheye lens effect by openCV?
I am looking for ways to create fisheye lens effect, looked at documentations for openCV, it looks like it contains Camera Calibration functions for radial distortions like fisheye. Is it possible to ...
52
votes
3answers
4k views
How to remove convexity defects in sudoku square
I was doing a fun project, ie solving a sudoku from input image using OpenCV (as in google goggles etc). And i have completed the task, but at the end i found a little problem for which i came here.
...
28
votes
2answers
6k views
Augmented Reality SDK with OpenCV [closed]
I am developing an Augmented Reality SDK on OpenCV. I had some problems to find tutorials on the topic, which steps to follow, possible algorithms, fast and efficient coding for real-time performance ...
5
votes
1answer
5k views
Audio output with video processing with opencv
I am processing video with opencv, but at the same time I need to play audio and simply control it, like loud or current frame number.
I think I should create a parallel process with ffmpeg, but I ...
4
votes
1answer
3k views
OpenCv 2.3 C - How to isolate object inside image
i have an image like:
i want to remove the black rows and cols round the number.
So i want that the result is:
i try this:
void findX(IplImage* imgSrc,int* min, int* max){
int i;
int ...
12
votes
8answers
20k views
OpenCV - cvWaitKey( )
Can you just explain what cvWaitKey() does? I saw it from the OpenCV reference but it wasn't clear for me?
Thanks.
16
votes
1answer
4k views
Computing camera pose with homography matrix based on 4 coplanar points
I have 4 coplanar points in a video (or image) representing a quad (not necessarily a square or rectangle) and I would like to be able to display a virtual cube on top of them where the corners of the ...
20
votes
2answers
11k 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 ...
17
votes
5answers
22k 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?
14
votes
1answer
3k views
get 3d coord from 2d image pixel if we know extrinsic and intrinsic parameters
I am doing camera calibration from tsai algo. I got intrensic and extrinsic matrix. But now how I convert the input 2D pixel in 3D coord.
I have now 2 ways to find X,Y,Z are
1) I can use Gaussian ...
13
votes
6answers
11k views
how to convert an opencv cv::Mat to qimage
I am wondering how would I convert the OpenCV C++ standard cv::Mat type to Qimage. I have been searching around, but have no luck. I have found some code that converts the IPlimage to Qimage, but that ...
4
votes
1answer
4k views
Opencv virtually camera rotating/translating for bird's eye view
I've a calibrated camera where I exactly know the intrinsic and extrinsic data. Also the height of the camera is known. Now I want to virtually rotate the camera for getting a Bird's eye view, such ...
8
votes
2answers
3k views
Square detection doesn't find squares
I'm using the program squares.c available in the samples of OpenCV libraries. It works well with every image, but I really can't figure it out why it doesn't recognize the square drawn in that image
...
2
votes
5answers
12k views
How to install OpenCV 2.0 on win32
I need to install OpenCV on Win32. I do not have it installed currently. I downloaded OpenCV-2.0.0a-win32.exe and ran it. What the heck do I do now? There are no .lib's and whatnot.
I found some ...
6
votes
4answers
1k views
Reshaping noisy coin into a circle form
I'm doing a coin detection using JavaCV (OpenCV wrapper) but I have a little problem when the coins are connected. If I try to erode them to separate these coins they loose their circle form and if I ...
5
votes
1answer
15k views
OpenCV get pixel information from Mat image
Maybe I'm not looking hard enough, but everything seems to want me to use an array. Thus, how do I get the channel value for a particular pixel for foo if foo is something like Mat foo = ...
7
votes
3answers
13k views
Pixel access in OpenCV 2.2
Hi I want to use opencv to tell me the pixel values of a blank and white image
so the output would look like this
10001
00040
11110
00100
Here is my current code but I'm not sure how to access ...
3
votes
2answers
1k views
iOS:Retrieve rectangle shaped image from the background image
I am working on an implementation where I have a rectangle shaped image in an big background image. I am trying to programmatically retrieve the rectangle shaped image from the big image and retrieve ...
2
votes
2answers
6k views
opencv every frame processing
I want to write a crossplatform application using opencv for video capture. In all the examples, i've found frames from the camera are processed using the grab function and waiting for a while. And i ...
4
votes
2answers
5k views
openCV: How to split a video into image sequence?
Using opencv, how can one split a video into image sequence.
How can i split it so the output be a sequence of images.
4
votes
1answer
2k views
Setting ROI with mouse from a rectangle on a video
I have video, when the program is run the video's first frame is taken as an image and the user is allowed to draw a rectangle on the image, after the rectangle is drawn, the user must right click on ...
-1
votes
2answers
860 views
Error with include files core and highgui in visual studio 2008
i am getting the following error, when i build my project,
Fatal error C1083: Cannot open include file: 'opencv2/core/core_c.h: No such file or directory Similarly for highgui.
As i have ...
26
votes
5answers
13k 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, ...
23
votes
5answers
25k views
Displaying webcam feed using opencv and python
I have been trying to create a simple program with python which utilises opencv to get a video feed from my webcam and display it on the screen.
I know I am partly there because the window is ...
7
votes
3answers
7k views
OpenCV C++/Obj-C: Advanced square detection
A while ago I asked a question about square detection and karlphillip came up with a decent result.
Now I want to take this a step further and find squares which edge aren't fully visible. Take a ...
10
votes
2answers
6k views
Convexity defects C++ OpenCv
I would be grateful to you if you could help me with this issue :)
Relating to this question cvConvexityDefects in OpenCV 2.X / C++?, I have the same problem.
The OpenCV C++ wrapper has not the ...
20
votes
1answer
9k views
How to sharpen an image in OpenCV?
How to sharpen an image using OpenCV? There are many ways of smoothing or blurring but none that I could see of sharpening.
4
votes
3answers
2k views
Raw image data from camera like “645 PRO”
A time ago I already asked this question and I also got a good answer:
I've been searching this forum up and down but I couldn't find what I
really need. I want to get raw image data from the ...
8
votes
4answers
5k views
Rotate cv::Mat using cv::warpAffine offsets destination image
I'm trying to rotate a 1296x968 image by 90 degrees using the C++ API of OpenCV and I'm facing a few problems.
Input:
Rotated:
As you can see, the rotated image has a few problems. First, it has ...
2
votes
5answers
7k views
OpenCV on ubuntu 11.10
I've just updated my system from ubuntu 11.04 to 11.10 and now I can't compile anymore any C program that contain references to OpenCV libraries
I've already tried to reinstall OpenCV (I use the 2.1 ...
450
votes
13answers
31k views
Algorithm improvement for Coca-Cola can shape recognition
One of the most interesting projects I've worked in the past couple years as I was still a student, was a final project about image processing. The goal was to develop a system to be able to recognize ...
13
votes
1answer
9k views
Tutorial for Iphone OpenCV on shape recognising
i will like to do some iPhone OpenCV application to recognize simple shapes like square through camera.
I tried to find out some info in stackoverflow, but can't find anything yet.
Can anyone show ...
17
votes
4answers
40k 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 ...
16
votes
2answers
6k views
How to define the markers for Watershed in OpenCV?
I'm writing for Android with OpenCV. I'm segmenting an image similar to below using marker-controlled watershed, without the user manually marking the image. I'm planning to use the regional maxima as ...
26
votes
5answers
8k 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.
20
votes
7answers
22k views
Sift implementation with OpenCV 2.2
Does someone know the link of example of SIFT implementation with OpenCV 2.2.
regards,
