mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
087d9bc376
It only offers one metric for now, "dssim", available if https://github.com/pornel/dssim was installed on the system at the time the plugin was compiled. The spearman correlation for dssim against the TID2008 dataset is 0.81, against 0.70 for the old ssim implementation, and it runs 15 times faster. https://bugzilla.gnome.org/show_bug.cgi?id=751324
27 lines
654 B
Makefile
27 lines
654 B
Makefile
plugin_LTLIBRARIES = libgstiqa.la
|
|
|
|
libgstiqa_la_SOURCES = \
|
|
iqa.c
|
|
|
|
libgstiqa_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
|
|
libgstiqa_la_CFLAGS += $(DSSIM_CFLAGS)
|
|
|
|
libgstiqa_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/base/libgstbadbase-$(GST_API_VERSION).la \
|
|
$(top_builddir)/gst-libs/gst/video/libgstbadvideo-$(GST_API_VERSION).la \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
|
|
|
libgstiqa_la_LIBADD += $(DSSIM_LIBS)
|
|
|
|
libgstiqa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstiqa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
iqa.h
|
|
|