c++ - Opencv Mingw Build -


after trying without succed install opencv mingw , codeblocks, finnaly give , download precompiled libs :

https://github.com/drewcrawford/drew-face/tree/master/opencv/build

but when try run opencv code, application crashed when start , have message :

"the application unable start correctly (0xc0000005). click ok close application."

her code test :

#include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp>  using namespace cv;  int main() {     cv::mat image;     image = cv::imread("4010194a00101a_090.bmp",0);     return 0; } 


Comments