2009-05-08 06:25:20 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2009> Kapil Agrawal <kapil@mediamagictechnologies.com>
|
|
|
|
*
|
|
|
|
* gstopencv.c: plugin registering
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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"
|
|
|
|
#include "gstpyramidsegment.h"
|
2009-05-13 08:55:31 +00:00
|
|
|
#include "gsttemplatematch.h"
|
2010-02-28 14:32:00 +00:00
|
|
|
#include "gsttextwrite.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;
|
|
|
|
|
2009-05-08 06:25:20 +00:00
|
|
|
if (!gst_edgedetect_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2009-05-26 11:59:04 +00:00
|
|
|
if (!gst_faceblur_plugin_init (plugin))
|
2009-05-25 10:26:28 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2009-05-08 06:25:20 +00:00
|
|
|
if (!gst_facedetect_plugin_init (plugin))
|
|
|
|
return FALSE;
|
2009-05-26 11:59:04 +00:00
|
|
|
|
2009-05-08 06:25:20 +00:00
|
|
|
if (!gst_pyramidsegment_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2009-05-13 08:55:31 +00:00
|
|
|
if (!gst_templatematch_plugin_init (plugin))
|
|
|
|
return FALSE;
|
2009-05-26 11:59:04 +00:00
|
|
|
|
2010-02-28 14:32:00 +00:00
|
|
|
if (!gst_textwrite_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2009-05-08 06:25:20 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"opencv",
|
|
|
|
"GStreamer OpenCV Plugins",
|
2010-09-09 09:27:49 +00:00
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|