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