• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * GStreamer
3  * Copyright (C) 2010 Filippo Argiolas <filippo.argiolas@gmail.com>
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-stretch
46  * @title: stretch
47  * @see_also: geometrictransform
48  *
49  * The stretch element stretches the image in a circle around the center point.
50  *
51  * ## Example launch line
52  * |[
53  * gst-launch-1.0 -v videotestsrc ! stretch ! videoconvert ! autovideosink
54  * ]|
55  *
56  */
57 
58 #ifdef HAVE_CONFIG_H
59 #  include <config.h>
60 #endif
61 
62 #include <gst/gst.h>
63 #include <math.h>
64 
65 #include "gststretch.h"
66 #include "geometricmath.h"
67 
68 GST_DEBUG_CATEGORY_STATIC (gst_stretch_debug);
69 #define GST_CAT_DEFAULT gst_stretch_debug
70 
71 enum
72 {
73   PROP_0,
74   PROP_INTENSITY
75 };
76 
77 #define DEFAULT_INTENSITY 0.5
78 #define MAX_SHRINK_AMOUNT 3.0
79 
80 #define gst_stretch_parent_class parent_class
81 G_DEFINE_TYPE (GstStretch, gst_stretch, GST_TYPE_CIRCLE_GEOMETRIC_TRANSFORM);
82 GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (stretch, "stretch", GST_RANK_NONE,
83     GST_TYPE_STRETCH, GST_DEBUG_CATEGORY_INIT (gst_stretch_debug, "stretch", 0,
84         "stretch"));
85 
86 static void
gst_stretch_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)87 gst_stretch_set_property (GObject * object, guint prop_id, const GValue * value,
88     GParamSpec * pspec)
89 {
90   GstStretch *stretch;
91   GstGeometricTransform *gt;
92   gdouble v;
93 
94   gt = GST_GEOMETRIC_TRANSFORM_CAST (object);
95   stretch = GST_STRETCH_CAST (object);
96 
97   GST_OBJECT_LOCK (gt);
98   switch (prop_id) {
99     case PROP_INTENSITY:
100       v = g_value_get_double (value);
101       if (v != stretch->intensity) {
102         stretch->intensity = v;
103         gst_geometric_transform_set_need_remap (gt);
104       }
105       break;
106     default:
107       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
108       break;
109   }
110   GST_OBJECT_UNLOCK (gt);
111 }
112 
113 static void
gst_stretch_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)114 gst_stretch_get_property (GObject * object, guint prop_id,
115     GValue * value, GParamSpec * pspec)
116 {
117   GstStretch *stretch;
118 
119   stretch = GST_STRETCH_CAST (object);
120 
121   switch (prop_id) {
122     case PROP_INTENSITY:
123       g_value_set_double (value, stretch->intensity);
124       break;
125     default:
126       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
127       break;
128   }
129 }
130 
131 static gboolean
stretch_map(GstGeometricTransform * gt,gint x,gint y,gdouble * in_x,gdouble * in_y)132 stretch_map (GstGeometricTransform * gt, gint x, gint y, gdouble * in_x,
133     gdouble * in_y)
134 {
135   GstCircleGeometricTransform *cgt = GST_CIRCLE_GEOMETRIC_TRANSFORM_CAST (gt);
136   GstStretch *stretch = GST_STRETCH_CAST (gt);
137 
138   gdouble norm_x, norm_y;
139   gdouble r;
140 
141   gdouble width = gt->width;
142   gdouble height = gt->height;
143   gdouble a, b;
144 
145   /* normalize in ((-1.0, -1.0), (1.0, 1.0) and translate the center */
146   norm_x = 2.0 * (x / width - cgt->x_center);
147   norm_y = 2.0 * (y / height - cgt->y_center);
148 
149   /* calculate radius, normalize to 1 for future convenience */
150   r = sqrt (0.5 * (norm_x * norm_x + norm_y * norm_y));
151 
152   /* actually "stretch" name is a bit misleading, what the transform
153    * really does is shrink the center and gradually return to normal
154    * size while r increases. The shrink thing drags pixels giving
155    * stretching the image around the center */
156 
157   /* a is the current maximum shrink amount, it goes from 1.0 to
158    * MAX_SHRINK_AMOUNT * intensity */
159   /* smoothstep goes from 0.0 when r == 0 to b when r == radius */
160   /* total shrink factor is MAX_SHRINK_AMOUNT at center and gradually
161    * decreases while r goes to radius */
162   a = 1.0 + (MAX_SHRINK_AMOUNT - 1.0) * stretch->intensity;
163   b = a - 1.0;
164 
165   norm_x *= a - b * gst_gm_smoothstep (0.0, cgt->radius, r);
166   norm_y *= a - b * gst_gm_smoothstep (0.0, cgt->radius, r);
167 
168   /* unnormalize */
169   *in_x = (0.5 * norm_x + cgt->x_center) * width;
170   *in_y = (0.5 * norm_y + cgt->y_center) * height;
171 
172   GST_DEBUG_OBJECT (stretch, "Inversely mapped %d %d into %lf %lf",
173       x, y, *in_x, *in_y);
174 
175   return TRUE;
176 }
177 
178 static void
gst_stretch_class_init(GstStretchClass * klass)179 gst_stretch_class_init (GstStretchClass * klass)
180 {
181   GObjectClass *gobject_class;
182   GstElementClass *gstelement_class;
183   GstGeometricTransformClass *gstgt_class;
184 
185   gobject_class = (GObjectClass *) klass;
186   gstelement_class = (GstElementClass *) klass;
187   gstgt_class = (GstGeometricTransformClass *) klass;
188 
189   gst_element_class_set_static_metadata (gstelement_class,
190       "stretch",
191       "Transform/Effect/Video",
192       "Stretch the image in a circle around the center point",
193       "Filippo Argiolas <filippo.argiolas@gmail.com>");
194 
195   gobject_class->set_property = gst_stretch_set_property;
196   gobject_class->get_property = gst_stretch_get_property;
197 
198   g_object_class_install_property (gobject_class, PROP_INTENSITY,
199       g_param_spec_double ("intensity", "intensity",
200           "Intensity of the stretch effect",
201           0.0, 1.0, DEFAULT_INTENSITY,
202           GST_PARAM_CONTROLLABLE | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
203 
204   gstgt_class->map_func = stretch_map;
205 }
206 
207 static void
gst_stretch_init(GstStretch * filter)208 gst_stretch_init (GstStretch * filter)
209 {
210   GstGeometricTransform *gt = GST_GEOMETRIC_TRANSFORM (filter);
211 
212   filter->intensity = DEFAULT_INTENSITY;
213   gt->off_edge_pixels = GST_GT_OFF_EDGES_PIXELS_CLAMP;
214 }
215