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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
/* VIPS function dispatch tables for convolution.
*
* J. Cupitt, 14/2/95.
*/
/*
This file is part of VIPS.
VIPS 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 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
*/
/*
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <glib/gi18n-lib.h>
#include <stdio.h>
#include <vips/vips.h>
#include <vips/vips7compat.h>
/* One image in, one out.
*/
static im_arg_desc one_in_one_out[] = {
IM_INPUT_IMAGE( "in" ),
IM_OUTPUT_IMAGE( "out" )
};
/* Two images in, one out.
*/
static im_arg_desc two_in_one_out[] = {
IM_INPUT_IMAGE( "in1" ),
IM_INPUT_IMAGE( "in2" ),
IM_OUTPUT_IMAGE( "out" )
};
/* Args to im_addgnoise.
*/
static im_arg_desc addgnoise_args[] = {
IM_INPUT_IMAGE( "in" ),
IM_OUTPUT_IMAGE( "out" ),
IM_INPUT_DOUBLE( "sigma" )
};
/* Call im_addgnoise via arg vector.
*/
static int
addgnoise_vec( im_object *argv )
{
double sigma = *((double *) argv[2]);
return( im_addgnoise( argv[0], argv[1], sigma ) );
}
/* Description of im_addgnoise.
*/
static im_function addgnoise_desc = {
"im_addgnoise", /* Name */
"add gaussian noise with mean 0 and std. dev. sigma",
IM_FN_PIO, /* Flags */
addgnoise_vec, /* Dispatch function */
IM_NUMBER( addgnoise_args ), /* Size of arg list */
addgnoise_args /* Arg list */
};
/* Args to im_contrast_surface.
*/
static im_arg_desc contrast_surface_args[] = {
IM_INPUT_IMAGE( "in" ),
IM_OUTPUT_IMAGE( "out" ),
IM_INPUT_INT( "half_win_size" ),
IM_INPUT_INT( "spacing" )
};
/* Call im_contrast_surface via arg vector.
*/
static int
contrast_surface_vec( im_object *argv )
{
int half_win_size = *((int *) argv[2]);
int spacing = *((int *) argv[3]);
return( im_contrast_surface( argv[0], argv[1],
half_win_size, spacing ) );
}
/* Description of im_contrast_surface.
*/
static im_function contrast_surface_desc = {
"im_contrast_surface", /* Name */
"find high-contrast points in an image",
IM_FN_PIO, /* Flags */
contrast_surface_vec, /* Dispatch function */
IM_NUMBER( contrast_surface_args ),/* Size of arg list */
contrast_surface_args /* Arg list */
};
/* Args to im_sharpen.
*/
static im_arg_desc sharpen_args[] = {
IM_INPUT_IMAGE( "in" ),
IM_OUTPUT_IMAGE( "out" ),
IM_INPUT_INT( "mask_size" ),
IM_INPUT_DOUBLE( "x1" ),
IM_INPUT_DOUBLE( "y2" ),
IM_INPUT_DOUBLE( "y3" ),
IM_INPUT_DOUBLE( "m1" ),
IM_INPUT_DOUBLE( "m2" )
};
/* Call im_sharpen via arg vector.
*/
static int
sharpen_vec( im_object *argv )
{
int mask_size = *((int *) argv[2]);
double x1 = *((double *) argv[3]);
double x2 = *((double *) argv[4]);
double x3 = *((double *) argv[5]);
double m1 = *((double *) argv[6]);
double m2 = *((double *) argv[7]);
return( im_sharpen( argv[0], argv[1], mask_size, x1, x2, x3, m1, m2 ) );
}
/* Description of im_sharpen.
*/
static im_function sharpen_desc = {
"im_sharpen", /* Name */
"sharpen high frequencies of L channel of LabQ",
IM_FN_PIO, /* Flags */
sharpen_vec, /* Dispatch function */
IM_NUMBER( sharpen_args ), /* Size of arg list */
sharpen_args /* Arg list */
};
/* Args for convolver with imask.
*/
static im_arg_desc conv_imask[] = {
IM_INPUT_IMAGE( "in" ),
IM_OUTPUT_IMAGE( "out" ),
IM_INPUT_IMASK( "matrix" )
};
/* Args for convolver with dmask.
*/
static im_arg_desc conv_dmask[] = {
IM_INPUT_IMAGE( "in" ),
IM_OUTPUT_IMAGE( "out" ),
IM_INPUT_DMASK( "matrix" )
};
/* Call im_compass via arg vector.
*/
static int
compass_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
return( im_compass( argv[0], argv[1], mo->mask ) );
}
/* Description of im_compass.
*/
static im_function compass_desc = {
"im_compass", /* Name */
"convolve with 8-way rotating integer mask",
IM_FN_PIO | IM_FN_TRANSFORM, /* Flags */
compass_vec, /* Dispatch function */
IM_NUMBER( conv_imask ), /* Size of arg list */
conv_imask /* Arg list */
};
/* Call im_conv via arg vector.
*/
static int
conv_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
return( im_conv( argv[0], argv[1], mo->mask ) );
}
/* Description of im_conv.
*/
static im_function conv_desc = {
"im_conv", /* Name */
"convolve",
IM_FN_TRANSFORM | IM_FN_PIO, /* Flags */
conv_vec, /* Dispatch function */
IM_NUMBER( conv_imask ), /* Size of arg list */
conv_imask /* Arg list */
};
/* Call im_conv_f via arg vector.
*/
static int
conv_f_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
return( im_conv_f( argv[0], argv[1], mo->mask ) );
}
/* Description of im_conv_f.
*/
static im_function conv_f_desc = {
"im_conv_f", /* Name */
"convolve, with DOUBLEMASK",
IM_FN_TRANSFORM | IM_FN_PIO, /* Flags */
conv_f_vec, /* Dispatch function */
IM_NUMBER( conv_dmask ), /* Size of arg list */
conv_dmask /* Arg list */
};
/* Call im_convsep via arg vector.
*/
static int
convsep_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
return( im_convsep( argv[0], argv[1], mo->mask ) );
}
/* Description of im_convsep.
*/
static im_function convsep_desc = {
"im_convsep", /* Name */
"seperable convolution",
IM_FN_TRANSFORM | IM_FN_PIO, /* Flags */
convsep_vec, /* Dispatch function */
IM_NUMBER( conv_imask ), /* Size of arg list */
conv_imask /* Arg list */
};
/* Call im_convsep_f via arg vector.
*/
static int
convsep_f_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
return( im_convsep_f( argv[0], argv[1], mo->mask ) );
}
/* Description of im_convsep_f.
*/
static im_function convsep_f_desc = {
"im_convsep_f", /* Name */
"seperable convolution, with DOUBLEMASK",
IM_FN_PIO | IM_FN_TRANSFORM, /* Flags */
convsep_f_vec, /* Dispatch function */
IM_NUMBER( conv_dmask ), /* Size of arg list */
conv_dmask /* Arg list */
};
/* Call im_fastcor via arg vector.
*/
static int
fastcor_vec( im_object *argv )
{
return( im_fastcor( argv[0], argv[1], argv[2] ) );
}
/* Description of im_fastcor.
*/
static im_function fastcor_desc = {
"im_fastcor", /* Name */
"fast correlate in2 within in1",
IM_FN_TRANSFORM | IM_FN_PIO, /* Flags */
fastcor_vec, /* Dispatch function */
IM_NUMBER( two_in_one_out ), /* Size of arg list */
two_in_one_out /* Arg list */
};
/* Call im_grad_x via arg vector.
*/
static int
grad_x_vec( im_object *argv )
{
return( im_grad_x( argv[0], argv[1] ) );
}
/* Description of im_grad_x.
*/
static im_function grad_x_desc = {
"im_grad_x", /* Name */
"horizontal difference image",
IM_FN_PIO | IM_FN_TRANSFORM, /* Flags */
grad_x_vec, /* Dispatch function */
IM_NUMBER( one_in_one_out ), /* Size of arg list */
one_in_one_out /* Arg list */
};
/* Call im_grad_y via arg vector.
*/
static int
grad_y_vec( im_object *argv )
{
return( im_grad_y( argv[0], argv[1] ) );
}
/* Description of im_grad_y.
*/
static im_function grad_y_desc = {
"im_grad_y", /* Name */
"vertical difference image",
IM_FN_PIO | IM_FN_TRANSFORM, /* Flags */
grad_y_vec, /* Dispatch function */
IM_NUMBER( one_in_one_out ), /* Size of arg list */
one_in_one_out /* Arg list */
};
/* Call im_gradcor via arg vector.
*/
static int
gradcor_vec( im_object *argv )
{
return( im_gradcor( argv[0], argv[1], argv[2] ) );
}
/* Description of im_gradcor.
*/
static im_function gradcor_desc = {
"im_gradcor", /* Name */
"non-normalised correlation of gradient of in2 within in1",
IM_FN_PIO | IM_FN_TRANSFORM, /* Flags */
gradcor_vec, /* Dispatch function */
IM_NUMBER( two_in_one_out ), /* Size of arg list */
two_in_one_out /* Arg list */
};
/* Call im_gradient via arg vector.
*/
static int
gradient_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
return( im_gradient( argv[0], argv[1], mo->mask ) );
}
/* Description of im_gradient.
*/
static im_function gradient_desc = {
"im_gradient", /* Name */
"convolve with 2-way rotating mask",
IM_FN_PIO | IM_FN_TRANSFORM, /* Flags */
gradient_vec, /* Dispatch function */
IM_NUMBER( conv_imask ), /* Size of arg list */
conv_imask /* Arg list */
};
/* Call im_lindetect via arg vector.
*/
static int
lindetect_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
return( im_lindetect( argv[0], argv[1], mo->mask ) );
}
/* Description of im_lindetect.
*/
static im_function lindetect_desc = {
"im_lindetect", /* Name */
"convolve with 4-way rotating mask",
IM_FN_PIO | IM_FN_TRANSFORM, /* Flags */
lindetect_vec, /* Dispatch function */
IM_NUMBER( conv_imask ), /* Size of arg list */
conv_imask /* Arg list */
};
/* Call im_spcor via arg vector.
*/
static int
spcor_vec( im_object *argv )
{
return( im_spcor( argv[0], argv[1], argv[2] ) );
}
/* Description of im_spcor.
*/
static im_function spcor_desc = {
"im_spcor", /* Name */
"normalised correlation of in2 within in1",
IM_FN_PIO | IM_FN_TRANSFORM, /* Flags */
spcor_vec, /* Dispatch function */
IM_NUMBER( two_in_one_out ), /* Size of arg list */
two_in_one_out /* Arg list */
};
/* Args for im_aconv().
*/
static im_arg_desc aconv_args[] = {
IM_INPUT_IMAGE( "in" ),
IM_OUTPUT_IMAGE( "out" ),
IM_INPUT_DMASK( "matrix" ),
IM_INPUT_INT( "n_layers" ),
IM_INPUT_INT( "cluster" )
};
/* Call im_aconv via arg vector.
*/
static int
aconv_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
int n_layers = *((int *) argv[3]);
int cluster = *((int *) argv[4]);
return( im_aconv( argv[0], argv[1], mo->mask, n_layers, cluster ) );
}
/* Description of im_aconv.
*/
static im_function aconv_desc = {
"im_aconv", /* Name */
"approximate convolution",
IM_FN_TRANSFORM | IM_FN_PIO, /* Flags */
aconv_vec, /* Dispatch function */
IM_NUMBER( aconv_args ), /* Size of arg list */
aconv_args /* Arg list */
};
/* Args for im_aconvsep().
*/
static im_arg_desc aconvsep_args[] = {
IM_INPUT_IMAGE( "in" ),
IM_OUTPUT_IMAGE( "out" ),
IM_INPUT_DMASK( "matrix" ),
IM_INPUT_INT( "n_layers" )
};
/* Call im_aconvsep via arg vector.
*/
static int
aconvsep_vec( im_object *argv )
{
im_mask_object *mo = argv[2];
int n_layers = *((int *) argv[3]);
return( im_aconvsep( argv[0], argv[1], mo->mask, n_layers ) );
}
/* Description of im_aconvsep.
*/
static im_function aconvsep_desc = {
"im_aconvsep", /* Name */
"approximate separable convolution",
IM_FN_TRANSFORM | IM_FN_PIO, /* Flags */
aconvsep_vec, /* Dispatch function */
IM_NUMBER( aconvsep_args ), /* Size of arg list */
aconvsep_args /* Arg list */
};
/* Package up all these functions.
*/
static im_function *convol_list[] = {
&aconvsep_desc,
&aconv_desc,
&addgnoise_desc,
&compass_desc,
&contrast_surface_desc,
&conv_desc,
&conv_f_desc,
&convsep_desc,
&convsep_f_desc,
&fastcor_desc,
&gradcor_desc,
&gradient_desc,
&grad_x_desc,
&grad_y_desc,
&lindetect_desc,
&sharpen_desc,
&spcor_desc,
};
/* Package of functions.
*/
im_package im__convolution = {
"convolution",
IM_NUMBER( convol_list ),
convol_list
};
|