简体   繁体   中英

How to use a camera with OpenCV

I'm trying to learn OpenCV. I have been playing around with it for an entire day trying to get it to recognize my camera. I just can't get it to work and I can't find any information about it.

My camera is a usb xbox live webcam, as soon as I connected it to my computer windows recognized it as if it were its own child and installed the drivers.

DISCLAIMER I'm like completely clueless as I have never worked with cameras before in code and I don't know how hard or difficult it would be to use one, nor do I know where to start, what information to look up, or anything like that. :( DISCLAIMER

I found this example on the opencv website at this url: http://opencv.willowgarage.com/wiki/CameraCapture

I copy and pasted the first one which says "Here is a simple framework to connect to a camera and show the images in a Window.". I formatted it correctly and got it to compile and run perfectly, but it gives the error "ERROR: capture is NULL" when I execute it(not a compiler error, its an error in the application)

I think there are more than enough code on stackoverflow that shows how to do the trick:

OpenCV 2.1: Runtime error

Unable to detect web cam in OpenCV

OpenCV: process every frame

OpenCV 'cvQueryFrame' non-blocking on OS X?

You may try http://muonics.net/school/spring05/videoInput/ . I have used it with OpenCV successfully.

Have a look at VideoInput. Its a library that uses DirectX to get access to your webcam. Here's an article I wrote about using videoInput with OpenCV .

as your given link :

 #include "cv.h" 
 #include "highgui.h"  

try this one

#include <"opencv\cv.h> 
#include <"opencv\highgui.h> //"opencv is the file where cv.h and highgui placed

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM