vote up 1 vote down star
1

I am new to OpenCV, and trying to capture an image, and then save it to a file. I am posting the code for your reference, below.

The jpg file is being saved, but it is black.

// Capture the Image from the webcam
CvCapture *pCapturedImage = cvCreateCameraCapture(0);

// Get the frame
IplImage *pSaveImg = cvQueryFrame(pCapturedImage);

// Save the frame into a file
cvSaveImage("test.jpg". ,pSaveImg); // A JPG FILE IS BEING SAVED
                                    // OF 6KB , BUT IT IS BLACK

All of the functions are succesful. I have tried the above code in both XP and Vista - the result is a black image on both. Please let me know what I am missing out.

flag

27% accept rate

6 Answers

vote up 0 vote down

i have the same damn problem in vista, in my xp it works perfectly.

link|flag
vote up 1 vote down

I suggest you run OpenCV sanity check

Its a serie of small executables located in the bin directory of opencv.

It will check if your camera is ok

link|flag
Thanks for the info. I shall check it. But I think my camera is okay, becuase using RoboRealm, a robotics tool, I can see my image and picute. I also use the web cam for video conferenceing, and people can see me. – Sujay Ghosh Jul 16 at 19:05
I tried running opencv on my netbook, the camera usually works fine but for some reason, it doesn't pass the sanity checks. I can't have it to work either – Eric Aug 12 at 23:20
vote up 0 vote down

From my experiences the first few frames that are captured when using:

frame = cvQueryFrame( capture );

Tend to be blank. You may want to wait a short while(about 3 seconds) and then try to capture the image.

link|flag
vote up 0 vote down

sorry if this is too obvious. Are you sure the webcam is properly seen and detected by OpenCV in other words, do you get an image when you redirect the captured frame to a "highGui" window? For instance like so:

 frame = cvQueryFrame( capture );
 cvNamedWindow( "myWindow", CV_WINDOW_AUTOSIZE );
 cvShowImage( "myWindow", frame );
link|flag
This code is also giving me a black image. Do I need to install codecs, or are there any dependencies My web cam is startng , but there is a black image – Sujay Ghosh May 22 at 15:38
vote up 0 vote down

I use the following code to capture images:

CvCapture* capture = cvCaptureFromCAM( CV_CAP_ANY );
if(!capture) error((char*)"No Capture");
IplImage *img=cvQueryFrame(capture);

I know this works for sure

link|flag
vote up 0 vote down

Sometimes the first call to cvQueryFrame() returns an empty image. Try:

IplImage *pSaveImg = cvQueryFrame(pCapturedImage);
pSaveImg = cvQueryFrame(pCapturedImage);

If that does not work, try to select capture device automatically:

CvCapture *pCapturedImage = cvCreateCameraCapture(-1);

Or you may try to select other capture devices where n=1,2,3...

CvCapture *pCapturedImage = cvCreateCameraCapture(n);

PS: Also I believe there is a misunderstanding about captured image looking at your variable name. The variable pCapturedImage is not an Image it is a Capture. You can always 'read' an image from capture.

link|flag
I am still getting a black image. I even tried this out in a while loop ; which shall break when 'q' is pressed. I also use cvVideoWriter , so as to save the captured frames into a video file (avi) , I still get a file which has black contents . Do I need to install any codecs, for OpenCV to run properly . Thanks, Sujay I get a black jpg, blac – Sujay Ghosh May 13 at 11:07
I am not sure I will be able to help you further. – nimcap May 13 at 12:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.