forked from dlstreamer/dlstreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vehicle_detection_2sources_cpu.sh
executable file
·40 lines (31 loc) · 1.45 KB
/
vehicle_detection_2sources_cpu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
# ==============================================================================
# Copyright (C) 2018-2020 Intel Corporation
#
# SPDX-License-Identifier: MIT
# ==============================================================================
set -e
BASEDIR=$(dirname "$0")/../..
if [ -n ${GST_SAMPLES_DIR} ]
then
source $BASEDIR/scripts/setup_env.sh
fi
source $BASEDIR/scripts/setlocale.sh
#import GET_MODEL_PATH
source $BASEDIR/scripts/path_extractor.sh
if [ -z ${1} ]; then
echo "ERROR set path to video"
echo "Usage: ./vehicle_detection_2sources_cpu.sh <path/to/your/video/sample>"
exit
fi
FILE=${1}
MODEL=vehicle-license-plate-detection-barrier-0106
PRE_PROC=ie
DETECT_MODEL_PATH=$(GET_MODEL_PATH $MODEL )
# Note that two pipelines create instances of singleton element 'inf0', so we can specify parameters only in first instance
gst-launch-1.0 --gst-plugin-path ${GST_PLUGIN_PATH} \
filesrc location=$FILE ! decodebin ! videoconvert ! video/x-raw,format=BGRx ! \
gvadetect inference-id=inf0 model=$DETECT_MODEL_PATH device=CPU pre-proc=$PRE_PROC every-nth-frame=1 batch-size=1 ! queue ! \
gvawatermark ! videoconvert ! fpsdisplaysink video-sink=xvimagesink sync=false \
filesrc location=${FILE} ! decodebin ! videoconvert ! video/x-raw,format=BGRx ! gvadetect inference-id=inf0 ! \
queue ! gvawatermark ! videoconvert ! fpsdisplaysink video-sink=xvimagesink sync=false