mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 07:26:33 +00:00
1af8fa1066
* Implement pyramid segmentation element * Make masking optional on edgedetect * Clean up edgedetect, add element details * Implemented edge detect element
15 lines
518 B
Makefile
15 lines
518 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstpyramidsegment.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstpyramidsegment_la_SOURCES = gstpyramidsegment.c
|
|
|
|
# flags used to compile this pyramidsegment
|
|
# add other _CFLAGS and _LIBS as needed
|
|
libgstpyramidsegment_la_CFLAGS = $(GST_CFLAGS) $(OPENCV_CFLAGS)
|
|
libgstpyramidsegment_la_LIBADD = $(GST_LIBS) $(OPENCV_LIBS)
|
|
libgstpyramidsegment_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = gstpyramidsegment.h
|