You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker container run --rm -ti --tmpfs /armcpu_plugin:rw -v $PWD:/remote \
46
-
arm-plugin sh -c "/armplg_build.sh && cp ./OV_ARM_package.tar.gz /remote"
46
+
arm-plugin sh -c "sh /armplg_build.sh && cp ./OV_ARM_package.tar.gz /remote"
47
47
```
48
48
> **NOTE**: There are a few environment variables that control `/armplg_build.sh` script execution.
49
49
>
@@ -189,16 +189,16 @@ On the output video you should see people enclosed in red rectangles:
189
189

190
190
191
191
### OpenVINO™ samples
192
-
You could verify the plugin by running [OpenVINO™ samples]. You can find C++ samples in `deployment_tools/inference_engine/bin` directory (if you build the plugin using approach #1) or `openvino/bin/armv7l/Release` directory (if you build the plugin using approach #2 or #3). The following procedure assumes the approach #1 is used.
193
-
OpenVINO™ samples require OpenCV libraries. If you build the plugin using approach #1 all needed OpenCV libraries are already placed in `build\lib` directory. If you build the plugin using approach #2 or #3 you need to install OpenCV or [build it from source].
192
+
You could verify the plugin by running [OpenVINO™ samples]. You can find C++ samples in `deployment_tools/inference_engine/bin/<platform_type>` directory (if you build the plugin using approach #1) or `openvino/bin/<platform_type>/Release` directory (if you build the plugin using approach #2 or #3). The following procedure assumes the approach #1 is used.
193
+
OpenVINO™ samples require OpenCV libraries. If you build the plugin using approach #1 all needed OpenCV libraries are already placed in `opencv\lib` directory. If you build the plugin using approach #2 or #3 you need to install OpenCV or [build it from source].
194
194
Let's try to run [Object Detection for SSD sample].
195
195
#### Model preparation
196
196
1. Prepare model `vehicle-license-plate-detection-barrier-0123` using Model Preparation precedure described in Open Model Zoo demos section.
197
197
#### Model inference on ARM
198
198
1. Copy OpenVINO™ and ARM plugin artefacts to ARM platform. If you build the plugin using approach #1, all artefacts are packed into `OV_ARM_package.tar.gz`.
199
-
2. Go to `deployment_tools/inference_engine/bin` directory:
199
+
2. Go to Inference Engine bin directory:
200
200
```
201
-
cd deployment_tools/inference_engine/bin
201
+
cd deployment_tools/inference_engine/bin/<platform_type>
202
202
```
203
203
3. Download a vehicle image, for instance, [this image]:
0 commit comments