2

I'm using Visual studio 2010 and I use a point gray camera. I use the flycapture libs and dll's to capture the video stream in my application. I use the FlyCapture2.dll, FlyCapture2d.dll and libiomp5md.dll (all 32 bit). My application compiles and links with the static libraries perfectly and in release mode it also runs perfectly. However, in debug mode I get the following error: The application was unable to start correctly (0xc0150002). click OK to close the application.

I think that there is a problem with the dynamic libraries of flycapture. I use the lastest version of flycapture but I am unable to fix this problem.

Thanks

pietro
  • 155
  • 1
  • 1
  • 10
  • Look in the Windows event log for the side-by-side error details. You'll probably need to contact the vendor for support. – Hans Passant Feb 16 '12 at 11:09
  • Problem is, the debug dll of FC2 depends on the debug visual c++ runtime dlls, which are not distributed and not available for download either. – neuviemeporte Jun 21 '13 at 11:57
  • These dlls come from VC++ 8.0 (2005) so if you don't have VS 2005 installed, you don't have them, period. I suppose even if you did, there would probably be a version mismatch. – neuviemeporte Jun 21 '13 at 12:07

1 Answers1

6

I had the same problem, it seems that the .pdb file is missing in the flycapture sdk for Flycapture2d.dll. My quick solution was to use the FlyCapture2.dll even under the debug mode.

bekoch
  • 76
  • 1
  • I had the same, but only on deployment computer. On development all was fine. Using FlyCapture2.dll is solution for me. – Michail Aug 31 '16 at 11:39