add seek support
This commit is contained in:
parent
db9a791bcc
commit
d063fc3804
@ -54,6 +54,8 @@ export YOLO=$PWD/../yoloserv
|
||||
cat<<EOF
|
||||
UKDIHOST=$UKDIHOST
|
||||
UKDIPORT=$UKDIPORT
|
||||
YOLOHOST=$YOLOHOST
|
||||
YOLOPORT=$YOLOPORT
|
||||
CORE=$CORE
|
||||
UKDI=$UKDI
|
||||
EOF
|
||||
@ -61,6 +63,8 @@ EOF
|
||||
f_read_ukdi
|
||||
|
||||
ZZZ=5
|
||||
mkdir -p $UKDI_yolo_indir
|
||||
mkdir -p $UKDI_yolo_outdir
|
||||
|
||||
|
||||
# Determina all the possible libs based on whats in UKDI_yolo_devices
|
||||
@ -72,6 +76,7 @@ modules/openvino/python3.10/dist-packages/openvino/inference_engine"
|
||||
PYP_PARAVISION="modules"
|
||||
PYP_DEEPFACE="modules"
|
||||
PYP_YOLOV5="modules/yolov5-face_Jan1"
|
||||
LIB_SEEK="modules/seek/Seekware_SDK_3.6.0.0/lib/x86_64-linux-gnu/"
|
||||
|
||||
# WHich libs are loaded depends on the YOLO device list
|
||||
LLP="."
|
||||
@ -89,6 +94,9 @@ do
|
||||
"deepface") LLP="$LLP:$LIB_DEEPFACE"
|
||||
PYP="$PYP:$PYP_DEEPFACE"
|
||||
;;
|
||||
"seek") LLP="$LLP:$LIB_SEEK"
|
||||
PYP="$PYP:src"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
echo "PYTHONPATH = $PYP"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user