0

I use openVINO R5 2018.5.445. I successfully installed all the software and dependencies for ubuntu 18.04. The test was successful as well. However, the sample models I am trying to run won't build. I followed the full documentation. Using the following commands:

cmake -DCMAKE_BUILD_TYPE=Release

(https://software.intel.com/en-us/articles/OpenVINO-InferEngine > Using Inference Engine Samples).

How should I Build the samples?

4

2 回答 2

1

在自定义位置/路径/目录中构建示例:

cd /opt/intel/computer_vision_sdk/inference_engine/samples   
mkdir build  
cd build CMAKE ..   
make 

默认情况下,-DCMAKE_BUILD_TYPE采用RELEASE.

于 2019-08-25T11:33:27.657 回答
0

我最终做了以下事情:

cd /opt/intel/computer_vision_sdk/inference_engine/samples

接着:

sudo ./build_samples.sh

我现在可以使用以下命令运行模型(在本例中为姿势估计):

./human_pose_estimation_demo -m /opt/intel/computer_vision_sdk_2018.5.445/deployment_tools/intel_models/human-pose-estimation-0001/FP32/human-pose-estimation-0001.xml
于 2019-02-01T12:15:24.423 回答