2009-05-08 06:25:20 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2009> Kapil Agrawal <kapil@mediamagictechnologies.com>
|
|
|
|
*
|
2015-07-31 12:45:43 +00:00
|
|
|
* gstopencv.cpp: plugin registering
|
2009-05-08 06:25:20 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-05-08 06:25:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2010-05-16 22:14:54 +00:00
|
|
|
#include "gstcvdilate.h"
|
2010-05-17 22:04:49 +00:00
|
|
|
#include "gstcvequalizehist.h"
|
2010-05-16 22:14:54 +00:00
|
|
|
#include "gstcverode.h"
|
2010-05-24 22:28:59 +00:00
|
|
|
#include "gstcvlaplace.h"
|
2010-05-11 23:11:42 +00:00
|
|
|
#include "gstcvsmooth.h"
|
2010-05-19 23:11:39 +00:00
|
|
|
#include "gstcvsobel.h"
|
2009-05-08 06:25:20 +00:00
|
|
|
#include "gstedgedetect.h"
|
2009-05-25 10:26:28 +00:00
|
|
|
#include "gstfaceblur.h"
|
2009-05-08 06:25:20 +00:00
|
|
|
#include "gstfacedetect.h"
|
2011-07-27 16:58:15 +00:00
|
|
|
#include "gstmotioncells.h"
|
2009-05-13 08:55:31 +00:00
|
|
|
#include "gsttemplatematch.h"
|
2011-03-27 20:50:24 +00:00
|
|
|
#include "gsttextoverlay.h"
|
2013-01-30 12:37:18 +00:00
|
|
|
#include "gsthanddetect.h"
|
2013-05-23 09:04:57 +00:00
|
|
|
#include "gstskindetect.h"
|
opencv: Add colour image enhancement element based on Retinex algorithm
Add colour image enhancement element based on Retinex algorithm. Two types
exist, namely basic and multiscale; both are described in this article:
Rahman, Zia-ur, Daniel J. Jobson, and Glenn A. Woodell. "Multi-scale retinex
for color image enhancement." Image Processing, 1996. Proceedings.,
International Conference on. Vol. 3. IEEE, 1996
Visually speaking the result looks a bit funny, but is pretty invariable to
lightning changes, which is good for some applications, like image
segmentation.
https://bugzilla.gnome.org/show_bug.cgi?id=700977
2013-05-27 09:20:07 +00:00
|
|
|
#include "gstretinex.h"
|
2013-06-11 12:32:43 +00:00
|
|
|
#include "gstsegmentation.h"
|
2013-07-17 09:28:28 +00:00
|
|
|
#include "gstgrabcut.h"
|
2013-08-23 09:38:04 +00:00
|
|
|
#include "gstdisparity.h"
|
2016-12-14 09:37:14 +00:00
|
|
|
#include "gstdewarp.h"
|
2009-05-08 06:25:20 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2010-05-16 22:14:54 +00:00
|
|
|
if (!gst_cv_dilate_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-05-17 22:04:49 +00:00
|
|
|
if (!gst_cv_equalize_hist_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-05-16 22:14:54 +00:00
|
|
|
if (!gst_cv_erode_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-05-24 22:28:59 +00:00
|
|
|
if (!gst_cv_laplace_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-05-11 23:11:42 +00:00
|
|
|
if (!gst_cv_smooth_plugin_init (plugin))
|
|
|
|
return FALSE;
|
2009-05-08 06:25:20 +00:00
|
|
|
|
2010-05-19 23:11:39 +00:00
|
|
|
if (!gst_cv_sobel_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2011-11-18 18:15:26 +00:00
|
|
|
if (!gst_edge_detect_plugin_init (plugin))
|
2009-05-08 06:25:20 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2011-11-18 18:15:26 +00:00
|
|
|
if (!gst_face_blur_plugin_init (plugin))
|
2009-05-25 10:26:28 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2011-11-18 18:15:26 +00:00
|
|
|
if (!gst_face_detect_plugin_init (plugin))
|
2009-05-08 06:25:20 +00:00
|
|
|
return FALSE;
|
2009-05-26 11:59:04 +00:00
|
|
|
|
2011-11-18 18:15:26 +00:00
|
|
|
if (!gst_motion_cells_plugin_init (plugin))
|
2011-07-27 16:58:15 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2011-11-18 18:15:26 +00:00
|
|
|
if (!gst_template_match_plugin_init (plugin))
|
2009-05-13 08:55:31 +00:00
|
|
|
return FALSE;
|
2009-05-26 11:59:04 +00:00
|
|
|
|
2011-03-27 20:50:24 +00:00
|
|
|
if (!gst_opencv_text_overlay_plugin_init (plugin))
|
2010-02-28 14:32:00 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2013-01-30 12:37:18 +00:00
|
|
|
if (!gst_handdetect_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2013-05-23 09:04:57 +00:00
|
|
|
if (!gst_skin_detect_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
opencv: Add colour image enhancement element based on Retinex algorithm
Add colour image enhancement element based on Retinex algorithm. Two types
exist, namely basic and multiscale; both are described in this article:
Rahman, Zia-ur, Daniel J. Jobson, and Glenn A. Woodell. "Multi-scale retinex
for color image enhancement." Image Processing, 1996. Proceedings.,
International Conference on. Vol. 3. IEEE, 1996
Visually speaking the result looks a bit funny, but is pretty invariable to
lightning changes, which is good for some applications, like image
segmentation.
https://bugzilla.gnome.org/show_bug.cgi?id=700977
2013-05-27 09:20:07 +00:00
|
|
|
if (!gst_retinex_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2013-06-11 12:32:43 +00:00
|
|
|
if (!gst_segmentation_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2013-07-17 09:28:28 +00:00
|
|
|
if (!gst_grabcut_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2013-08-23 09:38:04 +00:00
|
|
|
if (!gst_disparity_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2016-12-14 09:37:14 +00:00
|
|
|
if (!gst_dewarp_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2009-05-08 06:25:20 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 16:02:56 +00:00
|
|
|
opencv,
|
2009-05-08 06:25:20 +00:00
|
|
|
"GStreamer OpenCV Plugins",
|
2010-09-09 09:27:49 +00:00
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|