Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.

why LoadLibrary faild

stone__jesse
Beginner
216 Views

//in my dll

__declspec(dllexport) void TestCircle(void)
{
    InferenceEngine::CNNNetReader    reader;
    InferenceEngine::CNNNetwork    network;
}

//in my exe

hDLL = ::LoadLibrary("C:/AiRun/bin/aiobject.dll");

when add CNNNetReader    or  CNNNetwork   in function
LoadLibrary will failed hDLL = NULL

 

after mark them

 //  InferenceEngine::CNNNetReader    reader;
   // InferenceEngine::CNNNetwork    network;

LoadLibrary is good and successful

why?

;

0 Kudos
1 Reply
stone__jesse
Beginner
216 Views

ok i found the reason

I need put all openvino's dll togther like inference_engine.dll opencv_world410.dll

0 Kudos
Reply