2009-05-08 06:25:20 +00:00
|
|
|
plugin_LTLIBRARIES = libgstopencv.la
|
|
|
|
|
|
|
|
# sources used to compile this plug-in
|
2015-07-31 12:45:43 +00:00
|
|
|
libgstopencv_la_SOURCES = gstopencv.cpp \
|
2010-09-08 17:59:54 +00:00
|
|
|
gstopencvvideofilter.c \
|
|
|
|
gstopencvutils.c \
|
2015-10-02 18:02:26 +00:00
|
|
|
gstcvdilate.cpp \
|
2015-10-10 13:10:32 +00:00
|
|
|
gstcvdilateerode.cpp \
|
2010-09-08 17:59:54 +00:00
|
|
|
gstcvequalizehist.c \
|
2015-10-10 13:10:32 +00:00
|
|
|
gstcverode.cpp \
|
2010-09-08 17:59:54 +00:00
|
|
|
gstcvlaplace.c \
|
2015-10-02 17:10:32 +00:00
|
|
|
gstcvsmooth.cpp \
|
2010-09-08 17:59:54 +00:00
|
|
|
gstcvsobel.c \
|
2015-08-28 11:42:29 +00:00
|
|
|
gstedgedetect.cpp \
|
2015-08-26 09:57:24 +00:00
|
|
|
gstfaceblur.cpp \
|
2015-10-02 15:01:29 +00:00
|
|
|
gsthanddetect.cpp \
|
2010-09-08 17:59:54 +00:00
|
|
|
gstpyramidsegment.c \
|
|
|
|
gsttemplatematch.c \
|
2011-07-27 16:58:15 +00:00
|
|
|
gsttextoverlay.c \
|
|
|
|
gstmotioncells.c \
|
2015-10-02 17:50:45 +00:00
|
|
|
gstskindetect.cpp \
|
2015-10-02 16:48:47 +00:00
|
|
|
gstretinex.cpp \
|
2015-07-31 12:45:43 +00:00
|
|
|
gstfacedetect.cpp \
|
2013-06-11 12:32:43 +00:00
|
|
|
gstsegmentation.cpp \
|
2013-07-17 09:28:28 +00:00
|
|
|
gstgrabcut.cpp \
|
2013-08-23 09:38:04 +00:00
|
|
|
gstdisparity.cpp \
|
2011-07-27 16:58:15 +00:00
|
|
|
motioncells_wrapper.cpp \
|
|
|
|
MotionCells.cpp
|
|
|
|
|
2015-10-02 15:01:29 +00:00
|
|
|
libgstopencv_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CXXFLAGS) $(OPENCV_CFLAGS) \
|
|
|
|
-DGST_HAAR_CASCADES_DIR=\"$(pkgdatadir)/@GST_API_VERSION@/opencv_haarcascades\"
|
2009-05-08 06:25:20 +00:00
|
|
|
|
|
|
|
# flags used to compile this facedetect
|
|
|
|
# add other _CFLAGS and _LIBS as needed
|
2010-09-09 10:07:47 +00:00
|
|
|
#
|
|
|
|
# override CV_INLINE: GLib will take care of defining 'inline' sufficiently and
|
|
|
|
# OpenCV's define isn't good enough to avoid 'unused' gcc warnings (at v2.1.0)
|
2013-06-18 11:46:07 +00:00
|
|
|
libgstopencv_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
|
|
$(GST_CFLAGS) $(OPENCV_CFLAGS) \
|
2013-03-01 00:10:46 +00:00
|
|
|
-DCV_INLINE="static inline" \
|
2010-09-09 14:03:24 +00:00
|
|
|
-DCV_NO_BACKWARD_COMPATIBILITY
|
2009-05-08 06:25:20 +00:00
|
|
|
|
2010-05-05 04:24:54 +00:00
|
|
|
libgstopencv_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(OPENCV_LIBS) \
|
2012-04-04 12:41:22 +00:00
|
|
|
$(GSTPB_BASE_LIBS) -lgstvideo-$(GST_API_VERSION)
|
2009-05-08 06:25:20 +00:00
|
|
|
|
|
|
|
libgstopencv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2012-10-24 10:16:39 +00:00
|
|
|
libgstopencv_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
2009-05-08 06:25:20 +00:00
|
|
|
|
|
|
|
# headers we need but don't want installed
|
2010-09-08 17:59:54 +00:00
|
|
|
noinst_HEADERS = gstopencvvideofilter.h gstopencvutils.h \
|
|
|
|
gstcvdilateerode.h \
|
|
|
|
gstcvdilate.h \
|
|
|
|
gstcvequalizehist.h \
|
|
|
|
gstcverode.h \
|
|
|
|
gstcvlaplace.h \
|
|
|
|
gstcvsmooth.h \
|
|
|
|
gstcvsobel.h \
|
|
|
|
gstedgedetect.h \
|
|
|
|
gstfaceblur.h \
|
|
|
|
gstfacedetect.h \
|
2013-01-30 12:37:18 +00:00
|
|
|
gsthanddetect.h \
|
2010-09-08 17:59:54 +00:00
|
|
|
gstpyramidsegment.h \
|
|
|
|
gsttemplatematch.h \
|
2011-07-27 16:58:15 +00:00
|
|
|
gsttextoverlay.h \
|
2013-06-11 12:32:43 +00:00
|
|
|
gstskindetect.h \
|
|
|
|
gstretinex.h \
|
|
|
|
gstsegmentation.h \
|
2013-07-17 09:28:28 +00:00
|
|
|
gstgrabcut.h \
|
2013-08-23 09:38:04 +00:00
|
|
|
gstdisparity.h \
|
2011-07-27 16:58:15 +00:00
|
|
|
gstmotioncells.h \
|
|
|
|
motioncells_wrapper.h \
|
|
|
|
MotionCells.h
|
2013-01-30 12:37:18 +00:00
|
|
|
|
2013-03-01 00:10:46 +00:00
|
|
|
opencv_haarcascadesdir = $(pkgdatadir)/$(GST_API_VERSION)/opencv_haarcascades
|
2013-01-30 12:37:18 +00:00
|
|
|
opencv_haarcascades_DATA = fist.xml palm.xml
|
|
|
|
|
|
|
|
EXTRA_DIST = $(opencv_haarcascades_DATA)
|