aboutsummaryrefslogtreecommitdiffstats
path: root/meta-demo/recipes-demo/face-detection/face-detection_0.1.bb
blob: d05af460f30fde7944f0eee52fb7997f077cd03b (plain)
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
SUMMARY = "A demo of human face recognition"
SECTION = "demo"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"

SRC_URI = "file://recognize_face.py \
           file://collect_face.py \
"

RDEPENDS:${PN} = " \
    tensorflow-for-poets \
    python3-opencv \
    opencv-apps \
    opencv-samples \
    kernel-module-uvcvideo \
    python3-core \
"

do_install () {
	install -d ${D}${sbindir}
	install -m 0755 ${WORKDIR}/recognize_face.py ${D}${sbindir}/recognize_face
	install -m 0755 ${WORKDIR}/collect_face.py ${D}${sbindir}/collect_face
}

inherit ts_v1