gegl r2353 - in branches/branch_zhangjb: . operations/frequency tests/frequency



Author: zhangjb
Date: Sun May 25 13:50:01 2008
New Revision: 2353
URL: http://svn.gnome.org/viewvc/gegl?rev=2353&view=rev

Log:
* operations/frequency/preview-frequency-rgba.c: a new operation to preview a RGB frequency image.
* tests/frequency/hello-world-fourier.c: 


Added:
   branches/branch_zhangjb/operations/frequency/preview-frequency-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/preview-frequency-rgba.c
==============================================================================
--- (empty file)
+++ branches/branch_zhangjb/operations/frequency/preview-frequency-rgba.c	Sun May 25 13:50:01 2008
@@ -0,0 +1,131 @@
+/* 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       "preview-frequency-rgba.c"
+
+#include "gegl-chant.h"
+#include "tools/display.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;
+  gint height = gegl_buffer_get_height(input);
+  gdouble *src_buf;
+  gdouble *dst_buf;
+  gdouble *tmp_src_buf;
+  gdouble *tmp_dst_buf;
+  glong 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<3; i++)
+    {
+      get_component(src_buf, tmp_src_buf, i, 2*height*FFT_HALF(width));
+      fre2img((fftw_complex *)tmp_src_buf, tmp_dst_buf, width, height);
+      set_component(tmp_dst_buf, dst_buf, i, width*height);
+    }
+  for (i=0; i<height*width; i++)
+    {
+      dst_buf[i*4+3] = 1;
+    }
+  
+  gegl_buffer_set(output, 
+                  NULL, babl_format ("RGBA double"), (gdouble *)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 = "preview-frequency-rgba";
+  operation_class->categories = "frequency";
+  operation_class->description
+    = "Convert the frequency buffer to a displayable RGBA image.";
+}
+
+#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:50:01 2008
@@ -17,7 +17,7 @@
                                   NULL);
       GeglNode *dft = gegl_node_new_child(gegl, "operation", "dft-rgba", 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 *preview = gegl_node_new_child(gegl, "operation", "preview-frequency-rgba", NULL);
       GeglNode *grey = gegl_node_new_child(gegl, "operation", "grey", NULL);
       GeglNode *save = gegl_node_new_child(gegl,
                                   "operation",
@@ -31,7 +31,7 @@
        gegl_node_process(display);
        }*/
 
-      gegl_node_link_many(image, dft, idft, save, NULL);
+      gegl_node_link_many(image, dft, preview, save, NULL);
       gegl_node_process(save);
 
       g_object_unref(gegl);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]