[gegl/soc-2011-seamless-clone: 7/17] Optimize calculation area, fix wrong sampling list calculation, cache colors
- From: Barak Itkin <barakitkin src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl/soc-2011-seamless-clone: 7/17] Optimize calculation area, fix wrong sampling list calculation, cache colors
- Date: Sat, 17 Mar 2012 18:59:39 +0000 (UTC)
commit a49757b78af0fb77dbb5ae39a22514e0974df41a
Author: Barak Itkin <lightningismyname gmail com>
Date: Wed Aug 3 01:22:59 2011 +0300
Optimize calculation area, fix wrong sampling list calculation, cache colors
operations/common/seamless-clone/make-mesh.c | 4 +-
operations/common/seamless-clone/seamless-clone.c | 43 ++++++++++++++++-----
2 files changed, 35 insertions(+), 12 deletions(-)
---
diff --git a/operations/common/seamless-clone/make-mesh.c b/operations/common/seamless-clone/make-mesh.c
index 2c2b292..736016b 100644
--- a/operations/common/seamless-clone/make-mesh.c
+++ b/operations/common/seamless-clone/make-mesh.c
@@ -69,7 +69,7 @@ sc_compute_sample_list_part (ScOutline *outline,
/* Check if inserting more would help, and if there are actually
* points in the middle. */
- if (!needsMore || d >= 1)
+ if (!needsMore || d <= 1)
{
g_ptr_array_add (sl->points, pt1);
return;
@@ -140,7 +140,7 @@ sc_compute_sample_list_weights (gdouble Px,
tan_as_half[i] = ABS (tan_as_half[i]);
}
- weightTemp = (tan_as_half[0] + tan_as_half[N-1]) / pow (norms[0], 2);
+ weightTemp = (tan_as_half[0] + tan_as_half[N-1]) / norms[0];
g_array_append_val (sl->weights, weightTemp);
for (i = 1; i < N; i++)
diff --git a/operations/common/seamless-clone/seamless-clone.c b/operations/common/seamless-clone/seamless-clone.c
index 35e844d..d2a2474 100644
--- a/operations/common/seamless-clone/seamless-clone.c
+++ b/operations/common/seamless-clone/seamless-clone.c
@@ -76,6 +76,7 @@ typedef struct {
GeglBuffer *aux_buf;
GeglBuffer *input_buf;
ScMeshSampling *sampling;
+ GHashTable *pt2col;
} ScColorComputeInfo;
static void
@@ -89,9 +90,24 @@ sc_point_to_color_func (P2tRPoint *point,
gint i;
gdouble weightT = 0;
guint N = sl->points->len;
+ gfloat *col_cpy;
Babl *format = babl_format ("RGBA float");
+ if ((col_cpy = g_hash_table_lookup (cci->pt2col, point)) != NULL)
+ {
+ dest[0] = col_cpy[0];
+ dest[1] = col_cpy[1];
+ dest[2] = col_cpy[2];
+ dest[3] = col_cpy[3];
+ return;
+ }
+ else
+ {
+ col_cpy = g_new (gfloat, 4);
+ g_hash_table_insert (cci->pt2col, point, col_cpy);
+ }
+
for (i = 0; i < N; i++)
{
ScPoint *pt = g_ptr_array_index (sl->points, i);
@@ -108,10 +124,10 @@ sc_point_to_color_func (P2tRPoint *point,
}
// g_print ("=%f\n",weightT);
- dest[0] = dest_c[0] / weightT;
- dest[1] = dest_c[1] / weightT;
- dest[2] = dest_c[2] / weightT;
- dest[3] = 1;
+ col_cpy[0] = dest[0] = dest_c[0] / weightT;
+ col_cpy[1] = dest[1] = dest_c[1] / weightT;
+ col_cpy[2] = dest[2] = dest_c[2] / weightT;
+ col_cpy[3] = dest[3] = 1;
//g_print ("(%f,%f,%f)",dest[0],dest[1],dest[2]);
}
@@ -126,6 +142,7 @@ process (GeglOperation *operation,
gdouble x, y;
GeglRectangle aux_rect = *gegl_operation_source_get_bounding_box (operation, "aux");
+ GeglRectangle to_render;
ScOutline *outline;
@@ -174,19 +191,24 @@ process (GeglOperation *operation,
/* Part 2: The rendering */
/********************************************************************/
+ /* We only need to render the intersection of the mesh bounds and the
+ * desired output */
+ gegl_rectangle_intersect (&to_render, result, &mesh_bounds);
+
/* Alocate the output buffer */
- out_raw = g_new (gfloat, 4 * result->width * result->height);
+ out_raw = g_new (gfloat, 4 * to_render.width * to_render.height);
/* Render the mesh into it */
cci.aux_buf = aux;
cci.input_buf = input;
cci.sampling = mesh_sampling;
+ cci.pt2col = g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL, g_free);
- imcfg.min_x = result->x;
- imcfg.min_y = result->y;
+ imcfg.min_x = to_render.x;
+ imcfg.min_y = to_render.y;
imcfg.step_x = imcfg.step_y = 1;
- imcfg.x_samples = result->width;
- imcfg.y_samples = result->height;
+ imcfg.x_samples = to_render.width;
+ imcfg.y_samples = to_render.height;
imcfg.cpp = 4;
g_debug ("Start mesh rendering");
@@ -213,9 +235,10 @@ process (GeglOperation *operation,
g_debug ("Finish aux adding");
/* TODO: Add the aux to the mesh rendering! */
- gegl_buffer_set (output, result, babl_format("RGBA float"), out_raw, GEGL_AUTO_ROWSTRIDE);
+ gegl_buffer_set (output, &to_render, babl_format("RGBA float"), out_raw, GEGL_AUTO_ROWSTRIDE);
/* Free memory, by the order things were allocated! */
+ g_hash_table_destroy (cci.pt2col);
g_free (out_raw);
sc_mesh_sampling_free (mesh_sampling);
p2tr_triangulation_free (mesh);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]