Skip to content

Commit

Permalink
Fixed CVS-52338 (openvinotoolkit#5445)
Browse files Browse the repository at this point in the history
* Fixed CVS-52338

* Minor fixes
  • Loading branch information
avladimi authored and yekruglov committed Jun 7, 2021
1 parent 5f6d75f commit e952bb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/install_guides/installing-openvino-raspbian.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ The guide assumes you downloaded the OpenVINO toolkit for Raspbian* OS. If you d
By default, the package file is saved as `l_openvino_toolkit_runtime_raspbian_p_<version>.tgz`.
3. Create an installation folder.
```sh
sudo mkdir -p /opt/intel/openvino
sudo mkdir -p /opt/intel/openvino_2021
```
4. Unpack the archive:
```sh
sudo tar -xf l_openvino_toolkit_runtime_raspbian_p_<version>.tgz --strip 1 -C /opt/intel/openvino
sudo tar -xf l_openvino_toolkit_runtime_raspbian_p_<version>.tgz --strip 1 -C /opt/intel/openvino_2021
```

Now the OpenVINO toolkit components are installed. Additional configuration steps are still required. Continue to the next sections to install External Software Dependencies, configure the environment and set up USB rules.
Expand Down Expand Up @@ -154,7 +154,7 @@ Follow the next steps to use the pre-trained face detection model using Inferenc
```
4. Run the sample specifying the model, a path to the input image, and the VPU required to run with the Raspbian* OS:
```sh
./armv7l/Release/object_detection_sample_ssd -m face-detection-adas-0001.xml -d MYRIAD -i <path_to_image>
./armv7l/Release/object_detection_sample_ssd -m <path_to_model>/face-detection-adas-0001.xml -d MYRIAD -i <path_to_image>
```
The application outputs an image (`out_0.bmp`) with detected faced enclosed in rectangles.

Expand Down

0 comments on commit e952bb2

Please sign in to comment.