gegl r2352 - in branches/branch_zhangjb: . operations/frequency tests/frequency
- From: zhangjb svn gnome org
- To: svn-commits-list gnome org
- Subject: gegl r2352 - in branches/branch_zhangjb: . operations/frequency tests/frequency
- Date: Sun, 25 May 2008 13:27:55 +0000 (UTC)
Author: zhangjb
Date: Sun May 25 13:27:55 2008
New Revision: 2352
URL: http://svn.gnome.org/viewvc/gegl?rev=2352&view=rev
Log:
* operations/frequency/dft-inverse-rgba.c: a new operation that take IDFT for an RGBA image.
* tests/frequency/hello-world-fourier.c:
Added:
branches/branch_zhangjb/operations/frequency/dft-inverse-rgba.c (contents, props changed)
Modified:
branches/branch_zhangjb/ChangeLog
branches/branch_zhangjb/tests/frequency/hello-world-fourier.c
Added: branches/branch_zhangjb/operations/frequency/dft-inverse-rgba.c
==============================================================================
--- (empty file)
+++ branches/branch_zhangjb/operations/frequency/dft-inverse-rgba.c Sun May 25 13:27:55 2008
@@ -0,0 +1,127 @@
+/* This file is a part of GEGL
+ *
+ * GEGL is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * GEGL 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright 2008 Zhang Junbo <zhangjb svn gnome org>
+ */
+
+#ifdef GEGL_CHANT_PROPERTIES
+
+/* no properties */
+
+#else
+
+#define GEGL_CHANT_TYPE_POINT_FILTER
+#define GEGL_CHANT_C_FILE "dft-inverse-rgba.c"
+
+#include "gegl-chant.h"
+#include "tools/dft.c"
+#include "tools/component.c"
+#include <fftw3.h>
+
+static GeglRectangle
+get_bounding_box (GeglOperation *operation)
+{
+ GeglRectangle *in_rect = gegl_operation_source_get_bounding_box (operation, "input");
+ GeglRectangle result = *in_rect;
+
+ result.width -= 2;
+ return result;
+}
+
+static GeglRectangle
+get_cached_region(GeglOperation *operation,
+ const GeglRectangle *roi)
+{
+ GeglRectangle *in_rect = gegl_operation_source_get_bounding_box (operation, "input");
+ GeglRectangle result = *in_rect;
+
+ result.width -= 2;
+ return result;
+}
+
+static GeglRectangle
+get_required_for_output(GeglOperation *operation,
+ const gchar *input_pad,
+ const GeglRectangle *roi)
+{
+ GeglRectangle result = *gegl_operation_source_get_bounding_box(operation,
+ "input");
+ return result;
+}
+
+static void
+prepare(GeglOperation *operation)
+{
+ Babl *format = babl_format ("RGBA double");
+ gegl_operation_set_format(operation, "input", format);
+ gegl_operation_set_format(operation, "output", format);
+}
+
+static gboolean
+process(GeglOperation *operation,
+ GeglBuffer *input,
+ GeglBuffer *output,
+ const GeglRectangle *result)
+{
+ gint width = gegl_buffer_get_width(input)-2; /* width always refers to the image's (not buffer's) width. */
+ gint height = gegl_buffer_get_height(input);
+ gdouble *src_buf;
+ gdouble *dst_buf;
+ gdouble *tmp_src_buf;
+ gdouble *tmp_dst_buf;
+ gint i;
+
+ src_buf = g_new0(gdouble, 4*2*height*FFT_HALF(width));
+ dst_buf = g_new0(gdouble, 4*width*height);
+ tmp_src_buf = g_new0(gdouble, 2*height*FFT_HALF(width));
+ tmp_dst_buf = g_new0(gdouble, width*height);
+
+ gegl_buffer_get(input, 1.0, NULL, babl_format("RGBA double"), (gdouble *)src_buf, GEGL_AUTO_ROWSTRIDE);
+ for (i=0; i<4; i++)
+ {
+ get_component(src_buf, tmp_src_buf, i, 2*height*FFT_HALF(width));
+ idft((fftw_complex *)tmp_src_buf, tmp_dst_buf, width, height);
+ set_component(tmp_dst_buf, dst_buf, i, width*height);
+ }
+
+ gegl_buffer_set(output,
+ NULL, babl_format("RGBA double"), dst_buf, GEGL_AUTO_ROWSTRIDE);
+ g_free(src_buf);
+ g_free(dst_buf);
+ return TRUE;
+}
+
+static void
+gegl_chant_class_init(GeglChantClass *klass)
+{
+ GeglOperationClass *operation_class;
+ GeglOperationFilterClass *filter_class;
+
+ operation_class = GEGL_OPERATION_CLASS(klass);
+ filter_class = GEGL_OPERATION_FILTER_CLASS(klass);
+
+ filter_class->process = process;
+ operation_class->prepare = prepare;
+ operation_class->get_bounding_box = get_bounding_box;
+ operation_class->get_required_for_output= get_required_for_output;
+ operation_class->get_cached_region = get_cached_region;
+
+ operation_class->name = "dft-inverse-rgba";
+ operation_class->categories = "frequency";
+ operation_class->description
+ = "Perform 2-D inverse Discrete Fourier Transform for the image.\n";
+}
+
+#endif
Modified: branches/branch_zhangjb/tests/frequency/hello-world-fourier.c
==============================================================================
--- branches/branch_zhangjb/tests/frequency/hello-world-fourier.c (original)
+++ branches/branch_zhangjb/tests/frequency/hello-world-fourier.c Sun May 25 13:27:55 2008
@@ -16,7 +16,7 @@
"docs/images/lena_rgba.png",
NULL);
GeglNode *dft = gegl_node_new_child(gegl, "operation", "dft-rgba", NULL);
- GeglNode *idft = gegl_node_new_child(gegl, "operation", "dft-inverse-grey", NULL);
+ GeglNode *idft = gegl_node_new_child(gegl, "operation", "dft-inverse-rgba", NULL);
GeglNode *preview = gegl_node_new_child(gegl, "operation", "preview-frequency-grey", NULL);
GeglNode *grey = gegl_node_new_child(gegl, "operation", "grey", NULL);
GeglNode *save = gegl_node_new_child(gegl,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]