2009-05-08 06:25:20 +00:00
|
|
|
plugin_LTLIBRARIES = libgstopencv.la
|
|
|
|
|
|
|
|
# sources used to compile this plug-in
|
2010-09-08 17:59:54 +00:00
|
|
|
libgstopencv_la_SOURCES = gstopencv.c \
|
|
|
|
gstopencvvideofilter.c \
|
|
|
|
gstopencvutils.c \
|
|
|
|
gstcvdilate.c \
|
|
|
|
gstcvdilateerode.c \
|
|
|
|
gstcvequalizehist.c \
|
|
|
|
gstcverode.c \
|
|
|
|
gstcvlaplace.c \
|
|
|
|
gstcvsmooth.c \
|
|
|
|
gstcvsobel.c \
|
|
|
|
gstedgedetect.c \
|
|
|
|
gstfaceblur.c \
|
|
|
|
gstfacedetect.c \
|
|
|
|
gstpyramidsegment.c \
|
|
|
|
gsttemplatematch.c \
|
2011-03-27 20:50:24 +00:00
|
|
|
gsttextoverlay.c
|
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)
|
2010-05-05 04:24:54 +00:00
|
|
|
libgstopencv_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(OPENCV_CFLAGS) \
|
2010-09-09 14:03:24 +00:00
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) -DCV_INLINE="static inline" \
|
|
|
|
-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) \
|
2010-09-08 17:59:54 +00:00
|
|
|
$(GSTPB_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR)
|
2009-05-08 06:25:20 +00:00
|
|
|
|
|
|
|
libgstopencv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
|
|
|
|
# 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 \
|
|
|
|
gstpyramidsegment.h \
|
|
|
|
gsttemplatematch.h \
|
2011-03-27 20:50:24 +00:00
|
|
|
gsttextoverlay.h
|