2008-10-15 14:18:22 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2008 Filippo Argiolas <filippo.argiolas@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gstgleffects.h>
|
|
|
|
#include <gstgleffectscurves.h>
|
|
|
|
#include <gstgleffectlumatocurve.h>
|
|
|
|
|
|
|
|
/* Gaussian Kernel: std = 1.200000, size = 9x1 */
|
2008-10-16 21:47:01 +00:00
|
|
|
static gfloat gauss_kernel[9] = { 0.001285f, 0.014607f, 0.082898f,
|
2009-02-11 06:39:14 +00:00
|
|
|
0.234927f, 0.332452f, 0.234927f,
|
|
|
|
0.082898f, 0.014607f, 0.001285f
|
|
|
|
};
|
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
/* Normalization Constant = 0.999885 */
|
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
static void
|
|
|
|
gst_gl_effects_xray_step_one (gint width, gint height, guint texture,
|
|
|
|
gpointer data)
|
2008-10-15 14:18:22 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLEffects *effects = GST_GL_EFFECTS (data);
|
|
|
|
|
|
|
|
gst_gl_effects_luma_to_curve (effects, xray_curve, GST_GL_EFFECTS_CURVE_XRAY,
|
|
|
|
width, height, texture);
|
2008-10-15 14:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_effects_xray_step_two (gint width, gint height, guint texture,
|
|
|
|
gpointer data)
|
2008-10-15 14:18:22 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLEffects *effects = GST_GL_EFFECTS (data);
|
2008-10-15 14:18:22 +00:00
|
|
|
GstGLShader *shader;
|
|
|
|
|
|
|
|
shader = g_hash_table_lookup (effects->shaderstable, "xray1");
|
2009-02-11 06:39:14 +00:00
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
if (!shader) {
|
|
|
|
shader = gst_gl_shader_new ();
|
|
|
|
g_hash_table_insert (effects->shaderstable, "xray1", shader);
|
|
|
|
}
|
2009-02-11 06:39:14 +00:00
|
|
|
|
|
|
|
g_return_if_fail (gst_gl_shader_compile_and_check (shader,
|
|
|
|
hconv9_fragment_source, GST_GL_SHADER_FRAGMENT_SOURCE));
|
2008-10-15 14:18:22 +00:00
|
|
|
|
|
|
|
glMatrixMode (GL_PROJECTION);
|
|
|
|
glLoadIdentity ();
|
|
|
|
|
|
|
|
gst_gl_shader_use (shader);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE1);
|
|
|
|
glEnable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
glBindTexture (GL_TEXTURE_RECTANGLE_ARB, texture);
|
|
|
|
glDisable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
|
|
|
|
gst_gl_shader_set_uniform_1i (shader, "tex", 1);
|
|
|
|
|
|
|
|
gst_gl_shader_set_uniform_1fv (shader, "kernel", 9, gauss_kernel);
|
2008-10-16 21:47:01 +00:00
|
|
|
gst_gl_shader_set_uniform_1f (shader, "norm_const", 0.999885f);
|
2008-10-15 14:18:22 +00:00
|
|
|
gst_gl_shader_set_uniform_1f (shader, "norm_offset", 0.0f);
|
|
|
|
|
|
|
|
gst_gl_effects_draw_texture (effects, texture);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_effects_xray_step_three (gint width, gint height, guint texture,
|
|
|
|
gpointer data)
|
2008-10-15 14:18:22 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLEffects *effects = GST_GL_EFFECTS (data);
|
2008-10-15 14:18:22 +00:00
|
|
|
GstGLShader *shader;
|
2009-02-11 06:39:14 +00:00
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
shader = g_hash_table_lookup (effects->shaderstable, "xray2");
|
2009-02-11 06:39:14 +00:00
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
if (!shader) {
|
|
|
|
shader = gst_gl_shader_new ();
|
|
|
|
g_hash_table_insert (effects->shaderstable, "xray2", shader);
|
|
|
|
}
|
2009-02-11 06:39:14 +00:00
|
|
|
|
|
|
|
g_return_if_fail (gst_gl_shader_compile_and_check (shader,
|
|
|
|
vconv9_fragment_source, GST_GL_SHADER_FRAGMENT_SOURCE));
|
2008-10-15 14:18:22 +00:00
|
|
|
|
|
|
|
glMatrixMode (GL_PROJECTION);
|
|
|
|
glLoadIdentity ();
|
|
|
|
|
|
|
|
gst_gl_shader_use (shader);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE1);
|
|
|
|
glEnable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
glBindTexture (GL_TEXTURE_RECTANGLE_ARB, texture);
|
|
|
|
glDisable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
|
|
|
|
gst_gl_shader_set_uniform_1i (shader, "tex", 1);
|
|
|
|
|
|
|
|
gst_gl_shader_set_uniform_1fv (shader, "kernel", 9, gauss_kernel);
|
2008-10-16 21:47:01 +00:00
|
|
|
gst_gl_shader_set_uniform_1f (shader, "norm_const", 0.999885f);
|
2008-10-15 14:18:22 +00:00
|
|
|
gst_gl_shader_set_uniform_1f (shader, "norm_offset", 0.0f);
|
|
|
|
|
|
|
|
gst_gl_effects_draw_texture (effects, texture);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_effects_xray_step_four (gint width, gint height, guint texture,
|
|
|
|
gpointer data)
|
2008-10-15 14:18:22 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLEffects *effects = GST_GL_EFFECTS (data);
|
2008-10-15 14:18:22 +00:00
|
|
|
GstGLShader *shader;
|
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
gfloat hkern[9] = {
|
2008-10-15 14:18:22 +00:00
|
|
|
1.0, 0.0, -1.0,
|
|
|
|
2.0, 0.0, -2.0,
|
|
|
|
1.0, 0.0, -1.0
|
|
|
|
};
|
2009-02-11 06:39:14 +00:00
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
gfloat vkern[9] = {
|
2009-02-11 06:39:14 +00:00
|
|
|
1.0, 2.0, 1.0,
|
|
|
|
0.0, 0.0, 0.0,
|
2008-10-15 14:18:22 +00:00
|
|
|
-1.0, -2.0, -1.0
|
|
|
|
};
|
|
|
|
|
|
|
|
shader = g_hash_table_lookup (effects->shaderstable, "xray3");
|
2009-02-11 06:39:14 +00:00
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
if (!shader) {
|
|
|
|
shader = gst_gl_shader_new ();
|
|
|
|
g_hash_table_insert (effects->shaderstable, "xray3", shader);
|
|
|
|
}
|
2009-02-11 06:39:14 +00:00
|
|
|
|
|
|
|
g_return_if_fail (gst_gl_shader_compile_and_check (shader,
|
|
|
|
sobel_fragment_source, GST_GL_SHADER_FRAGMENT_SOURCE));
|
2008-10-15 14:18:22 +00:00
|
|
|
|
|
|
|
glMatrixMode (GL_PROJECTION);
|
|
|
|
glLoadIdentity ();
|
|
|
|
|
|
|
|
gst_gl_shader_use (shader);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE1);
|
|
|
|
glEnable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
glBindTexture (GL_TEXTURE_RECTANGLE_ARB, texture);
|
|
|
|
glDisable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
|
|
|
|
gst_gl_shader_set_uniform_1i (shader, "tex", 1);
|
|
|
|
|
|
|
|
gst_gl_shader_set_uniform_1fv (shader, "hkern", 9, hkern);
|
|
|
|
gst_gl_shader_set_uniform_1fv (shader, "vkern", 9, vkern);
|
|
|
|
|
|
|
|
gst_gl_shader_set_uniform_1i (shader, "invert", TRUE);
|
|
|
|
|
|
|
|
gst_gl_effects_draw_texture (effects, texture);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_effects_xray_step_five (gint width, gint height, guint texture,
|
|
|
|
gpointer stuff)
|
2008-10-15 14:18:22 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLEffects *effects = GST_GL_EFFECTS (stuff);
|
2008-10-15 14:18:22 +00:00
|
|
|
GstGLShader *shader;
|
|
|
|
|
|
|
|
shader = g_hash_table_lookup (effects->shaderstable, "xray4");
|
2009-02-11 06:39:14 +00:00
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
if (!shader) {
|
|
|
|
shader = gst_gl_shader_new ();
|
|
|
|
g_hash_table_insert (effects->shaderstable, "xray4", shader);
|
|
|
|
}
|
2009-02-11 06:39:14 +00:00
|
|
|
|
|
|
|
g_return_if_fail (gst_gl_shader_compile_and_check (shader,
|
|
|
|
multiply_fragment_source, GST_GL_SHADER_FRAGMENT_SOURCE));
|
2008-10-15 14:18:22 +00:00
|
|
|
|
|
|
|
glMatrixMode (GL_PROJECTION);
|
|
|
|
glLoadIdentity ();
|
|
|
|
|
|
|
|
gst_gl_shader_use (shader);
|
|
|
|
|
|
|
|
glActiveTexture (GL_TEXTURE2);
|
|
|
|
glEnable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
glBindTexture (GL_TEXTURE_RECTANGLE_ARB, effects->midtexture[2]);
|
2009-02-11 06:39:14 +00:00
|
|
|
glDisable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
gst_gl_shader_set_uniform_1i (shader, "base", 2);
|
2009-02-11 06:39:14 +00:00
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
glActiveTexture (GL_TEXTURE1);
|
|
|
|
glEnable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
glBindTexture (GL_TEXTURE_RECTANGLE_ARB, texture);
|
2009-02-11 06:39:14 +00:00
|
|
|
glDisable (GL_TEXTURE_RECTANGLE_ARB);
|
|
|
|
|
2008-10-15 14:18:22 +00:00
|
|
|
gst_gl_shader_set_uniform_1f (shader, "alpha", (gfloat) 0.28f);
|
|
|
|
gst_gl_shader_set_uniform_1i (shader, "blend", 1);
|
|
|
|
|
|
|
|
gst_gl_effects_draw_texture (effects, texture);
|
|
|
|
}
|
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
void
|
|
|
|
gst_gl_effects_xray (GstGLEffects * effects)
|
|
|
|
{
|
2008-10-15 14:18:22 +00:00
|
|
|
GstGLFilter *filter = GST_GL_FILTER (effects);
|
|
|
|
|
|
|
|
/* map luma to xray curve */
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_filter_render_to_target (filter, effects->intexture,
|
|
|
|
effects->midtexture[0], gst_gl_effects_xray_step_one, effects);
|
2008-10-15 14:18:22 +00:00
|
|
|
/* horizontal blur */
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_filter_render_to_target (filter, effects->midtexture[0],
|
|
|
|
effects->midtexture[1], gst_gl_effects_xray_step_two, effects);
|
2008-10-15 14:18:22 +00:00
|
|
|
/* vertical blur */
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_filter_render_to_target (filter, effects->midtexture[1],
|
|
|
|
effects->midtexture[2], gst_gl_effects_xray_step_three, effects);
|
2008-10-15 14:18:22 +00:00
|
|
|
/* detect edges with Sobel */
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_filter_render_to_target (filter, effects->midtexture[2],
|
|
|
|
effects->midtexture[3], gst_gl_effects_xray_step_four, effects);
|
2008-10-15 14:18:22 +00:00
|
|
|
/* multiply edges with the blurred image */
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_filter_render_to_target (filter, effects->midtexture[3],
|
|
|
|
effects->outtexture, gst_gl_effects_xray_step_five, effects);
|
2008-10-15 14:18:22 +00:00
|
|
|
}
|