Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix README and config issues
Browse files Browse the repository at this point in the history
Signed-off-by: Chao Li <[email protected]>
  • Loading branch information
chaoli2 committed May 5, 2019
1 parent 987c926 commit 7d7aa11
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions doc/BINARY_VERSION_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,15 +177,15 @@ sudo ln -s ~/catkin_ws/src/ros_openvino_toolkit /opt/openvino_toolkit/ros_openvi
```bash
roslaunch vino_launch pipeline_image.launch
```
* run object detection sample code input from RealSenseCamera.(connect Intel® Neural Compute Stick 2)
* run object detection sample code input from RealSenseCamera.
```bash
roslaunch vino_launch pipeline_object.launch
```
* run object detection sample code input from RealSenseCameraTopic.(connect Intel® Neural Compute Stick 2)
```bash
roslaunch vino_launch pipeline_object_topic.launch
```
* run object segmentation sample code input from RealSenseCameraTopic.(connect Intel® Neural Compute Stick 2)
* run object segmentation sample code input from RealSenseCameraTopic.
```bash
roslaunch vino_launch pipeline_segmentation.launch
```
Expand Down
3 changes: 1 addition & 2 deletions script/environment_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,13 @@ echo "Set OTHER_DEPENDENCY to $OTHER_DEPENDENCY"
# Clean Existing Directories
if [ "$CLEAN" == "1" ]; then
read -n1 -p "The clean operation will delete some manually created directories,
including ~/code, ~/catkin_ws, /opt/intel, /opt/openvino_toolkit, and OpenVINO tar ball.
including ~/code, /opt/intel, /opt/openvino_toolkit, and OpenVINO tar ball.
Do you want to clean existing directories[Y/N]?" answer
case $answer in
Y|y) echo
echo "===================Cleaning...===================================="
echo $ROOT_PASSWD | sudo -S rm -rf ~/code
echo $ROOT_PASSWD | sudo -S rm -rf /opt/intel
rm -rf ~/catkin_ws
echo $ROOT_PASSWD | sudo -S rm -rf /opt/openvino_toolkit
if [[ $system_ver = "16.04" && -L "/usr/lib/x86_64-linux-gnu/libboost_python3.so" ]]; then
echo $ROOT_PASSWD | sudo -S rm /usr/lib/x86_64-linux-gnu/libboost_python3.so
Expand Down
3 changes: 1 addition & 2 deletions script/environment_setup_binary.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,12 @@ if [ "$CLEAN" == "1" ]; then
echo "===================Clean Existing Directories...===================================="

read -n1 -p "The clean operation will delete some manually created directories,
including ~/code, ~/catkin_ws, /opt/intel, /opt/openvino_toolkit, and OpenVINO tar ball.
including ~/code, /opt/intel, /opt/openvino_toolkit, and OpenVINO tar ball.
Do you want to clean existing directories[Y/N]?" answer
case $answer in
Y|y) echo
echo "===================Cleaning...===================================="
echo $ROOT_PASSWD | sudo -S rm -rf ~/code
rm -rf ~/catkin_ws
echo $ROOT_PASSWD | sudo -S rm -rf /opt/intel
echo $ROOT_PASSWD | sudo -S rm -rf /opt/openvino_toolkit
if [[ $system_ver = "16.04" && -L "/usr/lib/x86_64-linux-gnu/libboost_python3.so" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion vino_launch/param/pipeline_object_oss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pipelines:
inputs: [RealSenseCamera]
infers:
- name: ObjectDetection
model: /opt/intel/computer_vision_sdk/deployment_tools/model_downloader/object_detection/common/mobilenet-ssd/caffe/output/FP16/mobilenet-ssd.xml
model: /opt/openvino_toolkit/open_model_zoo/model_downloader/object_detection/common/mobilenet-ssd/caffe/output/FP32/mobilenet-ssd.xml
engine: CPU
label: to/be/set/xxx.labels
batch: 16
Expand Down

0 comments on commit 7d7aa11

Please sign in to comment.