Openvino inference engine on c++ with visual studio

592 Views Asked by At

I'm trying to use inferenceegine on c++ by runnung the samples test. every things is ok building samples is running with out any error or warnings. but when im trying to run binary files like object_detection_sample_ssd.exe or run main for this sample by using visual studio. its show to this error Application was unable to start correctly what i can do please do u have any idea ?

2

There are 2 best solutions below

3
On

You are probably not having the dependency binaries like opencv_*.dll in the same folder as your binary. Also InferenceEngine binaries needs to be present in the folder from where your binary is expected to run. Please use DependencyWalker to identify the load dependency and copy the needed binary.

0
On

copy "\inference_engine\lib\intel64\Release\plugins.xml" to project dir, then replace Core core to Core core(plugins.xml)