• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * GStreamer
3  * Copyright (C) 2010 Thiago Santos <thiago.sousa.santos@collabora.co.uk>
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Alternatively, the contents of this file may be used under the
24  * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
25  * which case the following provisions apply instead of the ones
26  * mentioned above:
27  *
28  * This library is free software; you can redistribute it and/or
29  * modify it under the terms of the GNU Library General Public
30  * License as published by the Free Software Foundation; either
31  * version 2 of the License, or (at your option) any later version.
32  *
33  * This library is distributed in the hope that it will be useful,
34  * but WITHOUT ANY WARRANTY; without even the implied warranty of
35  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
36  * Library General Public License for more details.
37  *
38  * You should have received a copy of the GNU Library General Public
39  * License along with this library; if not, write to the
40  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
41  * Boston, MA 02110-1301, USA.
42  */
43 
44 /**
45  * SECTION:element-cvlaplace
46  *
47  * Applies cvLaplace OpenCV function to the image.
48  *
49  * <refsect2>
50  * <title>Example launch line</title>
51  * |[
52  * gst-launch-1.0 videotestsrc ! cvlaplace ! videoconvert ! autovideosink
53  * ]|
54  * </refsect2>
55  */
56 
57 #ifdef HAVE_CONFIG_H
58 #  include <config.h>
59 #endif
60 
61 #include "gstcvlaplace.h"
62 #include <opencv2/imgproc.hpp>
63 
64 
65 GST_DEBUG_CATEGORY_STATIC (gst_cv_laplace_debug);
66 #define GST_CAT_DEFAULT gst_cv_laplace_debug
67 
68 static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
69     GST_PAD_SINK,
70     GST_PAD_ALWAYS,
71     GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("RGB"))
72     );
73 
74 static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
75     GST_PAD_SRC,
76     GST_PAD_ALWAYS,
77     GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("RGB"))
78     );
79 
80 /* Filter signals and args */
81 enum
82 {
83   /* FILL ME */
84   LAST_SIGNAL
85 };
86 enum
87 {
88   PROP_0,
89   PROP_APERTURE_SIZE,
90   PROP_SCALE,
91   PROP_SHIFT,
92   PROP_MASK
93 };
94 
95 #define DEFAULT_APERTURE_SIZE 3
96 #define DEFAULT_SCALE_FACTOR 1.0
97 #define DEFAULT_SHIFT 0.0
98 #define DEFAULT_MASK TRUE
99 
100 G_DEFINE_TYPE (GstCvLaplace, gst_cv_laplace, GST_TYPE_OPENCV_VIDEO_FILTER);
101 
102 static void gst_cv_laplace_set_property (GObject * object, guint prop_id,
103     const GValue * value, GParamSpec * pspec);
104 static void gst_cv_laplace_get_property (GObject * object, guint prop_id,
105     GValue * value, GParamSpec * pspec);
106 
107 static GstFlowReturn gst_cv_laplace_transform (GstOpencvVideoFilter * filter,
108     GstBuffer * buf, cv::Mat img, GstBuffer * outbuf, cv::Mat outimg);
109 
110 static gboolean gst_cv_laplace_cv_set_caps (GstOpencvVideoFilter * trans,
111     gint in_width, gint in_height, int in_cv_type,
112     gint out_width, gint out_height, int out_cv_type);
113 
114 /* Clean up */
115 static void
gst_cv_laplace_finalize(GObject * obj)116 gst_cv_laplace_finalize (GObject * obj)
117 {
118   GstCvLaplace *filter = GST_CV_LAPLACE (obj);
119 
120   filter->intermediary_img.release ();
121   filter->cvGray.release ();
122   filter->Laplace.release ();
123 
124   G_OBJECT_CLASS (gst_cv_laplace_parent_class)->finalize (obj);
125 }
126 
127 /* initialize the cvlaplace's class */
128 static void
gst_cv_laplace_class_init(GstCvLaplaceClass * klass)129 gst_cv_laplace_class_init (GstCvLaplaceClass * klass)
130 {
131   GObjectClass *gobject_class;
132   GstOpencvVideoFilterClass *gstopencvbasefilter_class;
133   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
134 
135   gobject_class = (GObjectClass *) klass;
136   gstopencvbasefilter_class = (GstOpencvVideoFilterClass *) klass;
137 
138   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_cv_laplace_finalize);
139   gobject_class->set_property = gst_cv_laplace_set_property;
140   gobject_class->get_property = gst_cv_laplace_get_property;
141 
142   gstopencvbasefilter_class->cv_trans_func = gst_cv_laplace_transform;
143   gstopencvbasefilter_class->cv_set_caps = gst_cv_laplace_cv_set_caps;
144 
145   g_object_class_install_property (gobject_class, PROP_APERTURE_SIZE,
146       g_param_spec_int ("aperture-size", "aperture size",
147           "Size of the extended Laplace Kernel (1, 3, 5 or 7)", 1, 7,
148           DEFAULT_APERTURE_SIZE,
149           (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
150   g_object_class_install_property (gobject_class, PROP_SCALE,
151       g_param_spec_double ("scale", "scale factor", "Scale factor", 0.0,
152           G_MAXDOUBLE, DEFAULT_SCALE_FACTOR,
153           (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
154   g_object_class_install_property (gobject_class, PROP_SHIFT,
155       g_param_spec_double ("shift", "Shift",
156           "Value added to the scaled source array elements", 0.0, G_MAXDOUBLE,
157           DEFAULT_SHIFT,
158           (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
159   g_object_class_install_property (gobject_class, PROP_MASK,
160       g_param_spec_boolean ("mask", "Mask",
161           "Sets whether the detected edges should be used as a mask on the original input or not",
162           DEFAULT_MASK,
163           (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
164 
165   gst_element_class_add_static_pad_template (element_class, &src_factory);
166   gst_element_class_add_static_pad_template (element_class, &sink_factory);
167 
168   gst_element_class_set_static_metadata (element_class,
169       "cvlaplace",
170       "Transform/Effect/Video",
171       "Applies cvLaplace OpenCV function to the image",
172       "Thiago Santos<thiago.sousa.santos@collabora.co.uk>");
173 }
174 
175 static void
gst_cv_laplace_init(GstCvLaplace * filter)176 gst_cv_laplace_init (GstCvLaplace * filter)
177 {
178   filter->aperture_size = DEFAULT_APERTURE_SIZE;
179   filter->scale = DEFAULT_SCALE_FACTOR;
180   filter->shift = DEFAULT_SHIFT;
181   filter->mask = DEFAULT_MASK;
182 
183   gst_opencv_video_filter_set_in_place (GST_OPENCV_VIDEO_FILTER_CAST (filter),
184       FALSE);
185 }
186 
187 static gboolean
gst_cv_laplace_cv_set_caps(GstOpencvVideoFilter * trans,gint in_width,gint in_height,int in_cv_type,gint out_width,gint out_height,int out_cv_type)188 gst_cv_laplace_cv_set_caps (GstOpencvVideoFilter * trans, gint in_width,
189     gint in_height, int in_cv_type, gint out_width,
190     gint out_height, int out_cv_type)
191 {
192   GstCvLaplace *filter = GST_CV_LAPLACE (trans);
193 
194   filter->intermediary_img.create (cv::Size (out_width, out_height), CV_16SC1);
195   filter->cvGray.create (cv::Size (in_width, in_height), CV_8UC1);
196   filter->Laplace.create (cv::Size (in_width, in_height), CV_8UC1);
197 
198   return TRUE;
199 }
200 
201 static void
gst_cv_laplace_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)202 gst_cv_laplace_set_property (GObject * object, guint prop_id,
203     const GValue * value, GParamSpec * pspec)
204 {
205   GstCvLaplace *filter = GST_CV_LAPLACE (object);
206 
207   switch (prop_id) {
208     case PROP_APERTURE_SIZE:{
209       gint as = g_value_get_int (value);
210 
211       if (as % 2 != 1) {
212         GST_WARNING_OBJECT (filter, "Invalid value %d for aperture size", as);
213       } else
214         filter->aperture_size = g_value_get_int (value);
215     }
216       break;
217     case PROP_SCALE:
218       filter->scale = g_value_get_double (value);
219       break;
220     case PROP_SHIFT:
221       filter->shift = g_value_get_double (value);
222       break;
223     case PROP_MASK:
224       filter->mask = g_value_get_boolean (value);
225       break;
226     default:
227       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
228       break;
229   }
230 }
231 
232 static void
gst_cv_laplace_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)233 gst_cv_laplace_get_property (GObject * object, guint prop_id,
234     GValue * value, GParamSpec * pspec)
235 {
236   GstCvLaplace *filter = GST_CV_LAPLACE (object);
237 
238   switch (prop_id) {
239     case PROP_APERTURE_SIZE:
240       g_value_set_int (value, filter->aperture_size);
241       break;
242     case PROP_SCALE:
243       g_value_set_double (value, filter->scale);
244       break;
245     case PROP_SHIFT:
246       g_value_set_double (value, filter->shift);
247       break;
248     case PROP_MASK:
249       g_value_set_boolean (value, filter->mask);
250       break;
251     default:
252       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
253       break;
254   }
255 }
256 
257 static GstFlowReturn
gst_cv_laplace_transform(GstOpencvVideoFilter * base,GstBuffer * buf,cv::Mat img,GstBuffer * outbuf,cv::Mat outimg)258 gst_cv_laplace_transform (GstOpencvVideoFilter * base, GstBuffer * buf,
259     cv::Mat img, GstBuffer * outbuf, cv::Mat outimg)
260 {
261   GstCvLaplace *filter = GST_CV_LAPLACE (base);
262 
263   cv::cvtColor (img, filter->cvGray, cv::COLOR_RGB2GRAY);
264   cv::Laplacian (filter->cvGray, filter->intermediary_img,
265       filter->intermediary_img.depth (), filter->aperture_size);
266   filter->intermediary_img.convertTo (filter->Laplace, filter->Laplace.type (),
267       filter->scale, filter->shift);
268 
269   outimg.setTo (cv::Scalar::all (0));
270   if (filter->mask) {
271     img.copyTo (outimg, filter->Laplace);
272   } else {
273     cv::cvtColor (filter->Laplace, outimg, cv::COLOR_GRAY2RGB);
274   }
275 
276   return GST_FLOW_OK;
277 }
278 
279 gboolean
gst_cv_laplace_plugin_init(GstPlugin * plugin)280 gst_cv_laplace_plugin_init (GstPlugin * plugin)
281 {
282   GST_DEBUG_CATEGORY_INIT (gst_cv_laplace_debug, "cvlaplace", 0, "cvlaplace");
283 
284   return gst_element_register (plugin, "cvlaplace", GST_RANK_NONE,
285       GST_TYPE_CV_LAPLACE);
286 }
287