Click here to Skip to main content
15,909,835 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I am working on Credential Provider using VC++. Where i want start a web cam using

opencv classes and libraries. Added all the header files and its libraries to

credential provider for accessing.

Code Like this:
C++
cvCapture *camera = 0;
IplImage *frame;
IplImage *showimg;
cvNamedWindow("Input", CV_WINDOW_AUTOSIZE);
camera = cvCaptureFromCAM(0);
cvSetCaptureProperty(camera, CV_CAP_PROP_FRAME_WIDTH, 360);
cvSetCaptureProperty(camera, CV_CAP_PROP_FRAME_HEIGHT, 240);
while(1)
{
frame = cvQueryFrame(camera);
showimg = cvCloneImage(frame);
cvShowImage("Input", showimg);
}

added this code to display the cam on the window.

but its not displaying cam but displaying the window and giving the error Like this:

"This application has requested the runtime to terminate it in a unusual way. Please contact the application's support team for more information".

Can anyone give me some idea, how to solve this issue.

Thanks in Advance.
Posted
Updated 1-Oct-12 20:57pm
v2
Comments
Sergey Alexandrovich Kryukov 2-Oct-12 16:23pm    
Did you use logging to find out what operations were successful, what were not? Another advice: create a test/prototype version of product with the same code base, to be able to debug. You would catch most of the problems.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900