vote up 2 vote down star
1

Hello,

I am trying to integrate some OpenCV functionality into my application. Currently I have code set up with DirectShow to get a video feed from my camera, which is then showed in an MFC window. This code cannot be changed or removed.

The code runs completely fine, but regardless of the location i place the following line of code:

IplImage *img = cvLoadImage("C:/well.jpg");

The webcam fails to initialize correctly and breaks the program.

more directly, i get a FAILED HRESULT at:

CoInitializeEx(NULL, COINIT_APARTMENTTHREADED)

More specifically, at some point in my code i Call CDialog::doModal(), which then hits CoInitializeEx(), and thus makes the program fail.

would anyone know what is going on here?

flag
fails how? whats the error code? – Shay Erlichmen Apr 10 at 5:22
I added an update that i just found, the code fails when i call CDialog::DoModal, regardless of where cvLoadImage is located at – strife25 Apr 10 at 5:46

2 Answers

vote up 1 vote down check

CoInitialize will fail if the thread was previously initialized as a different apartment, i.e., if there was a previous CoInitializeEx(NULL, COINIT_MULTITHREADED)

I would guess that OpenCV calls CoInitializeEx(NULL, COINIT_MULTITHREADED), causing your subsequent calls to CoInitializeEx to fail. You can confirm this by checking the return of CoInitializeEx - it'll be RPC_E_CHANGED_MODE in this case.

There is no straightforward fix, the most straightforward will be to move the OpenCV calls into a separate thread.

link|flag
vote up 0 vote down

In addition to what Michael said check also for external dependent DLL's, if one is missing CoInitialize will also fail.

link|flag

Your Answer

Get an OpenID
or

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