This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pipelines: | |
- name: object | |
inputs: [RealSenseCameraTopic] | |
infers: | |
- name: ObjectDetection | |
model: /opt/openvino_toolkit/open_model_zoo/model_downloader/object_detection/common/mobilenet-ssd/caffe/output/FP32/mobilenet-ssd.xml | |
engine: CPU | |
label: /opt/openvino_toolkit/open_model_zoo/model_downloader/object_detection/common/mobilenet-ssd/caffe/output/FP32/mobilenet-ssd.labels | |
batch: 1 | |
confidence_threshold: 0.5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2018, ARM Limited. | |
# SPDX-License-Identifier: Apache-2.0 | |
FROM arm64v8/ubuntu:bionic | |
RUN apt-get -qq update && apt-get -qq install --no-install-recommends -y build-essential \ | |
cmake \ | |
git \ | |
wget \ | |
unzip \ |