Click here to Skip to main content
15,887,214 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am compiling DLib examples and when trying to execute, I get 0xc000007b. I built using VS 64 bit and linking to 64 bit OpenCV.

What I have tried:

Compiling using CMake against 64 bit.
Posted
Updated 21-Aug-16 23:11pm

1 solution

A common source for this error is loading a 32-bit DLL from a 64-bit application or vice versa.

So check your project settings (does the DLLs specified there match the application for 32 / 64-bit) and the DLLs loaded using #pragma statements.

You can also check the dependencies of your application using the Dependency Walker (depends.exe) Home Page[^].
 
Share this answer
 

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