[gegl] watershed-transform: use new iterator api
- From: Øyvind "pippin" Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] watershed-transform: use new iterator api
- Date: Wed, 12 Sep 2018 11:54:33 +0000 (UTC)
commit 6cb220dcbb97d9dfda28a584ef0bc88aa1bb9bca
Author: Øyvind Kolås <pippin gimp org>
Date: Mon Sep 10 22:36:23 2018 +0200
watershed-transform: use new iterator api
operations/common/watershed-transform.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/operations/common/watershed-transform.c b/operations/common/watershed-transform.c
index 763248402..34214f506 100644
--- a/operations/common/watershed-transform.c
+++ b/operations/common/watershed-transform.c
@@ -18,6 +18,7 @@
/* Propagate labels by wathershed transformation using hierarchical queues */
+#define GEGL_ITERATOR2_API
#include "config.h"
#include <glib/gi18n-lib.h>
@@ -231,7 +232,7 @@ process (GeglOperation *operation,
HQ_init (&hq);
iter = gegl_buffer_iterator_new (input, extent, 0, labels_format,
- GEGL_ACCESS_READ, GEGL_ABYSS_NONE);
+ GEGL_ACCESS_READ, GEGL_ABYSS_NONE, 3);
gegl_buffer_iterator_add (iter, aux, extent, 0, gradient_format,
GEGL_ACCESS_READ, GEGL_ABYSS_NONE);
@@ -241,12 +242,13 @@ process (GeglOperation *operation,
while (gegl_buffer_iterator_next (iter))
{
- guint32 *label = iter->data[0];
- guint8 *pixel = iter->data[1];
- guint32 *outlabel = iter->data[2];
+ guint32 *label = iter->items[0].data;
+ guint8 *pixel = iter->items[1].data;
+ guint32 *outlabel = iter->items[2].data;
+ GeglRectangle *roi = &iter->items[0].roi;
- for (y = iter->roi->y; y < iter->roi->y + iter->roi->height; y++)
- for (x = iter->roi->x; x < iter->roi->x + iter->roi->width; x++)
+ for (y = roi->y; y < roi->y + roi->height; y++)
+ for (x = roi->x; x < roi->x + roi->width; x++)
{
if (label[1] != 0)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]