1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
/*
* @(#) $Id: tipops.c 8362 2007-07-16 21:33:55Z yeti-dn $
* Copyright (C) 2004-2006 David Necas (Yeti), Petr Klapetek.
* E-mail: yeti@gwyddion.net, klapetek@gwyddion.net.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA
*/
#include "config.h"
#include <gtk/gtk.h>
#include <libgwyddion/gwymacros.h>
#include <libgwyddion/gwymath.h>
#include <libprocess/arithmetic.h>
#include <libprocess/tip.h>
#include <libgwymodule/gwymodule-process.h>
#include <app/gwyapp.h>
#define TIP_OPS_RUN_MODES GWY_RUN_INTERACTIVE
typedef enum {
DILATION,
EROSION,
CERTAINTY_MAP
} TipOperation;
typedef struct {
GwyContainer *data;
gint id;
} GwyDataObjectId;
typedef struct {
GwyDataObjectId tip;
GwyDataObjectId target;
} TipOpsArgs;
static gboolean module_register (void);
static void tipops (GwyContainer *data,
GwyRunType run,
const gchar *name);
static gboolean tipops_dialog (TipOpsArgs *args,
TipOperation op);
static void tipops_tip_cb (GwyDataChooser *chooser,
TipOpsArgs *args);
static gboolean tipops_tip_filter(GwyContainer *data,
gint id,
gpointer user_data);
static void tipops_do (TipOpsArgs *args,
TipOperation op);
static GwyModuleInfo module_info = {
GWY_MODULE_ABI_VERSION,
&module_register,
N_("Tip operations: dilation (convolution), erosion (reconstruction) "
"and certainty map."),
"Petr Klapetek <klapetek@gwyddion.net>, Yeti <yeti@gwyddion.net>",
"1.1",
"David Nečas (Yeti) & Petr Klapetek",
"2006",
};
GWY_MODULE_QUERY(module_info)
static gboolean
module_register(void)
{
gwy_process_func_register("tip_dilation",
&tipops,
N_("/_Tip/_Dilation..."),
NULL,
TIP_OPS_RUN_MODES,
GWY_MENU_FLAG_DATA,
N_("Surface dilation by defined tip"));
gwy_process_func_register("tip_reconstruction",
&tipops,
N_("/_Tip/_Surface Reconstruction..."),
NULL,
TIP_OPS_RUN_MODES,
GWY_MENU_FLAG_DATA,
N_("Surface reconstruction by defined tip"));
gwy_process_func_register("tip_map",
&tipops,
N_("/_Tip/_Certainty Map..."),
NULL,
TIP_OPS_RUN_MODES,
GWY_MENU_FLAG_DATA,
N_("Tip certainty map"));
return TRUE;
}
static void
tipops(GwyContainer *data,
GwyRunType run,
const gchar *name)
{
static const GwyEnum ops[] = {
{ "tip_dilation", DILATION, },
{ "tip_reconstruction", EROSION, },
{ "tip_map", CERTAINTY_MAP, },
};
TipOperation op;
TipOpsArgs args;
g_return_if_fail(run & TIP_OPS_RUN_MODES);
op = gwy_string_to_enum(name, ops, G_N_ELEMENTS(ops));
if (op == (TipOperation)-1) {
g_warning("tipops does not provide function `%s'", name);
return;
}
args.target.data = data;
gwy_app_data_browser_get_current(GWY_APP_DATA_FIELD_ID, &args.target.id, 0);
args.tip.data = NULL;
if (tipops_dialog(&args, op))
tipops_do(&args, op);
}
static gboolean
tipops_dialog(TipOpsArgs *args,
TipOperation op)
{
static const gchar *titles[] = {
N_("Tip Dilation"),
N_("Surface Reconstruction"),
N_("Certainty Map Analysis"),
};
GtkWidget *dialog, *table, *chooser, *label;
gint row, response;
gboolean ok = FALSE;
dialog = gtk_dialog_new_with_buttons(_(titles[op]), NULL, 0,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_OK);
table = gtk_table_new(2, 2, FALSE);
gtk_table_set_row_spacings(GTK_TABLE(table), 2);
gtk_table_set_col_spacings(GTK_TABLE(table), 6);
gtk_container_set_border_width(GTK_CONTAINER(table), 4);
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), table, TRUE, TRUE, 4);
row = 0;
/* Tip */
label = gtk_label_new_with_mnemonic(_("_Tip morphology:"));
gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
gtk_table_attach(GTK_TABLE(table), label,
0, 1, row, row+1, GTK_EXPAND | GTK_FILL, 0, 0, 0);
chooser = gwy_data_chooser_new_channels();
g_object_set_data(G_OBJECT(chooser), "dialog", dialog);
gwy_data_chooser_set_filter(GWY_DATA_CHOOSER(chooser),
tipops_tip_filter, &args->target, NULL);
g_signal_connect(chooser, "changed", G_CALLBACK(tipops_tip_cb), args);
gtk_table_attach_defaults(GTK_TABLE(table), chooser, 1, 2, row, row+1);
gtk_label_set_mnemonic_widget(GTK_LABEL(label), chooser);
row++;
label = gtk_label_new(NULL);
gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
gtk_table_attach(GTK_TABLE(table), label,
0, 2, row, row+1, GTK_EXPAND | GTK_FILL, 0, 0, 0);
g_object_set_data(G_OBJECT(chooser), "warning-label", label);
tipops_tip_cb(GWY_DATA_CHOOSER(chooser), args);
gtk_widget_show_all(dialog);
do {
response = gtk_dialog_run(GTK_DIALOG(dialog));
switch (response) {
case GTK_RESPONSE_CANCEL:
case GTK_RESPONSE_DELETE_EVENT:
gtk_widget_destroy(dialog);
case GTK_RESPONSE_NONE:
return FALSE;
break;
case GTK_RESPONSE_OK:
ok = TRUE;
break;
default:
g_assert_not_reached();
break;
}
} while (!ok);
gtk_widget_destroy(dialog);
return TRUE;
}
static void
tipops_tip_cb(GwyDataChooser *chooser,
TipOpsArgs *args)
{
GtkWidget *dialog, *label;
GwyDataField *tip, *target;
gint xres, yres;
GQuark quark;
gchar *s;
args->tip.data = gwy_data_chooser_get_active(chooser, &args->tip.id);
gwy_debug("tip: %p %d", args->tip.data, args->tip.id);
dialog = g_object_get_data(G_OBJECT(chooser), "dialog");
g_assert(GTK_IS_DIALOG(dialog));
gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog), GTK_RESPONSE_OK,
args->tip.data != NULL);
if (!args->tip.data)
return;
label = g_object_get_data(G_OBJECT(chooser), "warning-label");
quark = gwy_app_get_data_key_for_id(args->tip.id);
tip = GWY_DATA_FIELD(gwy_container_get_object(args->tip.data, quark));
quark = gwy_app_get_data_key_for_id(args->target.id);
target = GWY_DATA_FIELD(gwy_container_get_object(args->target.data, quark));
if (!gwy_data_field_check_compatibility(tip, target,
GWY_DATA_COMPATIBILITY_MEASURE)) {
gtk_label_set_text(GTK_LABEL(label), "");
return;
}
xres = GWY_ROUND(gwy_data_field_get_xreal(tip)
/gwy_data_field_get_xmeasure(target));
xres = MAX(xres, 1);
yres = GWY_ROUND(gwy_data_field_get_yreal(tip)
/gwy_data_field_get_ymeasure(target));
yres = MAX(yres, 1);
s = g_strdup_printf(_("Tip measure does not match data.\n"
"It will be resampled from %d×%d to %d×%d."),
gwy_data_field_get_xres(tip),
gwy_data_field_get_yres(tip),
xres, yres);
gtk_label_set_text(GTK_LABEL(label), s);
g_free(s);
}
static gboolean
tipops_tip_filter(GwyContainer *data,
gint id,
gpointer user_data)
{
GwyDataObjectId *object = (GwyDataObjectId*)user_data;
GwyDataField *tip, *target;
GQuark quark;
quark = gwy_app_get_data_key_for_id(id);
tip = GWY_DATA_FIELD(gwy_container_get_object(data, quark));
quark = gwy_app_get_data_key_for_id(object->id);
target = GWY_DATA_FIELD(gwy_container_get_object(object->data, quark));
if (gwy_data_field_get_xreal(tip) <= gwy_data_field_get_xreal(target)/4
&& gwy_data_field_get_yreal(tip) <= gwy_data_field_get_yreal(target)/4
&& !gwy_data_field_check_compatibility(tip, target,
GWY_DATA_COMPATIBILITY_LATERAL
| GWY_DATA_COMPATIBILITY_VALUE))
return TRUE;
return FALSE;
}
static void
tipops_do(TipOpsArgs *args,
TipOperation op)
{
static const gchar *data_titles[] = {
N_("Dilated data"),
N_("Surface reconstruction"),
};
GwyDataField *dfield, *tip, *target;
GQuark quark;
gboolean ok;
gint newid;
quark = gwy_app_get_data_key_for_id(args->tip.id);
tip = GWY_DATA_FIELD(gwy_container_get_object(args->tip.data, quark));
quark = gwy_app_get_data_key_for_id(args->target.id);
target = GWY_DATA_FIELD(gwy_container_get_object(args->target.data, quark));
/* result fields - after computation result should be in dfield */
dfield = gwy_data_field_new_alike(target, FALSE);
/* FIXME */
gwy_app_wait_start(gwy_app_find_window_for_channel(args->target.data,
args->target.id),
_("Initializing"));
if (op == DILATION || op == EROSION) {
if (op == DILATION)
ok = gwy_tip_dilation(tip, target, dfield,
gwy_app_wait_set_fraction,
gwy_app_wait_set_message) != NULL;
else
ok = gwy_tip_erosion(tip, target, dfield,
gwy_app_wait_set_fraction,
gwy_app_wait_set_message) != NULL;
gwy_app_wait_finish();
if (ok) {
newid = gwy_app_data_browser_add_data_field(dfield,
args->target.data,
TRUE);
gwy_app_sync_data_items(args->target.data, args->target.data,
args->target.id, newid, FALSE,
GWY_DATA_ITEM_PALETTE, 0);
gwy_app_set_data_field_title(args->target.data, newid,
data_titles[op]);
}
}
else {
ok = gwy_tip_cmap(tip, target, dfield,
gwy_app_wait_set_fraction,
gwy_app_wait_set_message) != NULL;
gwy_app_wait_finish();
if (ok) {
quark = gwy_app_get_mask_key_for_id(args->target.id);
gwy_app_undo_qcheckpointv(args->target.data, 1, &quark);
gwy_container_set_object(args->target.data, quark, dfield);
}
}
g_object_unref(dfield);
}
/* vim: set cin et ts=4 sw=4 cino=>1s,e0,n0,f0,{0,}0,^0,\:1s,=0,g1s,h0,t0,+1s,c3,(0,u0 : */
|