├── .gitignore ├── Makefile.am ├── README ├── autogen.sh ├── configure.ac ├── examples ├── Makefile.am └── videoControl.c └── src ├── Makefile.am ├── gsthanddetect.c ├── gsthanddetect.h ├── gstopencvutils.c ├── gstopencvutils.h ├── gstopencvvideofilter.c ├── gstopencvvideofilter.h └── xml ├── fist.xml └── palm.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src examples 2 | 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/configure.ac -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/videoControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/examples/videoControl.c -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/gsthanddetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/gsthanddetect.c -------------------------------------------------------------------------------- /src/gsthanddetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/gsthanddetect.h -------------------------------------------------------------------------------- /src/gstopencvutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/gstopencvutils.c -------------------------------------------------------------------------------- /src/gstopencvutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/gstopencvutils.h -------------------------------------------------------------------------------- /src/gstopencvvideofilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/gstopencvvideofilter.c -------------------------------------------------------------------------------- /src/gstopencvvideofilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/gstopencvvideofilter.h -------------------------------------------------------------------------------- /src/xml/fist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/xml/fist.xml -------------------------------------------------------------------------------- /src/xml/palm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdc-lab/GstHanddetect/HEAD/src/xml/palm.xml --------------------------------------------------------------------------------