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"
|
2017-10-16 20:29:01 +00:00
|
|
|
#include "gstcameracalibrate.h"
|
|
|
|
#include "gstcameraundistort.h"
|
2020-05-24 18:07:25 +00:00
|
|
|
#include "gstcvtracker.h"
|
2009-05-08 06:25:20 +00:00
|
|
|
|
2021-02-18 12:34:54 +00:00
|
|
|
|
2009-05-08 06:25:20 +00:00
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2021-02-18 12:34:54 +00:00
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
ret |= GST_ELEMENT_REGISTER (cvdilate, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (cvequalizehist, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (cverode, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (cvlaplace, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (cvsmooth, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (cvsobel, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (edgedetect, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (faceblur, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (facedetect, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (motioncells, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (templatematch, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (opencvtextoverlay, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (handdetect, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (skindetect, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (retinex, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (segmentation, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (grabcut, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (disparity, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (dewarp, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (cameracalibrate, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (cameraundistort, plugin);
|
2020-05-24 18:07:25 +00:00
|
|
|
ret |= GST_ELEMENT_REGISTER (cvtracker, plugin);
|
2021-02-18 12:34:54 +00:00
|
|
|
|
|
|
|
return ret;
|
2009-05-08 06:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|