| 12
 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
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 
 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" value="application/xhtml+xml" />
  <meta name="verify-v1" content="g222frIIxcQTrvDR3NBRUSKP3AnMNoqxOkIniCEkV7U=" />
  <link rel="meta" type="application/rdf+xml" title="ICI" href="http://imagemagick.org/ici.rdf" />
  <style type="text/css" media="screen,projection"><!--
    @import url("../../www/magick.css");
  --></style>
  <link rel="shortcut icon" href="../../images/wand.ico"  type="images/vnd.microsoft.icon"/>
  <title>ImageMagick: MagickCore, C API for ImageMagick: Add an Effect</title>
  <meta http-equiv="Content-Language" content="en-US"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <meta http-equiv="Reply-to" content="magick-users@imagemagick.org"/>
  <meta name="Generator" content="PHP"/>
  <meta name="Keywords" content="magickcore, c, api, for, imagemagick:, add, an, effect, ImageMagick, ImageMagic, MagickCore, MagickWand, PerlMagick, Magick++, RMagick, PythonMagick, JMagick, TclMagick, Image, Magick, Magic, Wand, ImageMagickObject, Swiss, Army, Knife, Image, Processing"/>
  <meta name="Description" content="ImageMagick® is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (about 100) including GIF, JPEG, JPEG-2000, PNG, PDF, PhotoCD, TIFF, and DPX. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.  ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you can freely use, copy, modify, and distribute. Its license is compatible with the GPL. It runs on all major operating systems.  The functionality of ImageMagick is typically utilized from the command line or you can use the features from programs written in your favorite programming language. Choose from these interfaces: MagickCore (C), MagickWand (C), ChMagick (Ch), Magick++ (C++), JMagick (Java), L-Magick (Lisp), PascalMagick (Pascal), PerlMagick (Perl), MagickWand for PHP (PHP), PythonMagick (Python), RMagick (Ruby), or TclMagick (Tcl/TK). With a language interface, use ImageMagick to modify or create images automagically and dynamically."/>
  <meta name="Rating" content="GENERAL"/>
  <meta name="Robots" content="INDEX, FOLLOW"/>
  <meta name="Generator" content="ImageMagick Studio LLC"/>
  <meta name="Author" content="ImageMagick Studio LLC"/>
  <meta name="Revisit-after" content="2 DAYS"/>
  <meta name="Resource-type" content="document"/>
  <meta name="Copyright" content="Copyright (c) 1999-2010 ImageMagick Studio LLC"/>
  <meta name="Distribution" content="Global"/>
</head>
<body id="www-imagemagick-org">
<div class="titlebar">
<a href="../../index.html">
  <img src="../../images/script.png" alt="[ImageMagick]"
  style="width: 350px; height: 60px; margin: 28px auto; float: left;" /></a>
<a href="http://www.networkredux.com">
  <img src="../../images/networkredux.png" alt="[sponsor]"
  style="margin: 45px auto; border: 0px; float: left;" /></a>
<a href="http://www.imagemagick.org/discourse-server/">
  <img src="../../images/logo.jpg" alt=""
  style="width: 114px; height: 118px; border: 0px; float: right;" /></a>
<a href="../../index.html">
  <img src="../../images/sprite.jpg" alt=""
  style="width: 114px; height: 118px; border: 0px; float: right;" /></a>
</div>
<div class="eastbar">
<div class="menu">
  <a href="../../index.html">About ImageMagick</a>
</div>
<div class="sep"></div>
<div class="menu">
  <a href="../../www/command-line-tools.html">Command-line Tools</a>
</div>
<div class="sub">
    <a href="../../www/command-line-processing.html">Processing</a>
</div>
<div class="sub">
    <a href="../../www/command-line-options.html">Options</a>
</div>
<div class="sub">
    <a href="http://www.imagemagick.org/Usage/">Usage</a>
</div>
<div class="menu">
  <a href="../../www/api.html">Program Interfaces</a>
</div>
<div class="sub">
    <a href="../../www/magick-wand.html">MagickWand</a>
</div>
<div class="sub">
    <a href="../../www/magick-core.html">MagickCore</a>
</div>
<div class="sub">
    <a href="../../www/perl-magick.html">PerlMagick</a>
</div>
<div class="sub">
    <a href="../../Magick++/">Magick++</a>
</div>
<div class="menu">
  <a href="../../www/architecture.html">Architecture</a>
</div>
<div class="sep"></div>
<div  class="menu">
   <a href="../../www/install-source.html">Install from Source</a>
</div>
<div class="sub">
    <a href="../../www/install-source.html#unix">Unix</a>
</div>
<div class="sub">
    <a href="../../www/install-source.html#windows">Windows</a>
 </div>
<div class="menu">
  <a href="../../www/binary-releases.html">Binary Releases</a>
</div>
<div class="sub">
    <a href="../../www/binary-releases.html#unix">Unix</a>
</div>
<div class="sub">
    <a href="../../www/binary-releases.html#macosx">Mac OS X</a>
</div>
<div class="sub">
    <a href="../../www/binary-releases.html#windows">Windows</a>
</div>
<div class="menu">
  <a href="../../www/resources.html">Resources</a>
</div>
<div class="sep"></div>
<div class="menu">
  <a href="../../www/download.html">Download</a>
</div>
<div class="sep"></div>
<div class="menu">
  <a href="../http://www.imagemagick.org/script/search.php">Search</a>
</div>
<div class="sep"></div>
<div class="menu">
  <a href="../../www/sitemap.html">Site Map</a>
</div>
<div  class="sub">
    <a href="../../www/links.html">Links</a>
</div>
<div class="sep"></div>
<div  class="menu">
  <a href="../../www/sponsors.html">Sponsors:</a>
<div class="sponsbox">
<div  class="sponsor">
   <a href="http://www.geschenke-elsen.de/" title="Lampe Berger">Lampe Berger</a><!-- 20106101000040 -->
</div>
<div  class="sponsor">
  <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
</div>
<div  class="sponsor">
  <a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
</div>
<div  class="sponsor">
  <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201007010120 Buchhorn -->
</div>
<div  class="sponsor">
  <a href="http://www.blumenversender.com">Blumenversand</a><!-- 201005010120 -->
</div>
<div  class="sponsor">
  <a href="http://www.print24.de/">Druckerei</a><!-- 201009010720 -->
</div>
<div  class="sponsor">
   <a href="http://www.goyax.de">Börse</a><!-- 201004010240 Gewiese digital-finance.de -->
</div>
<div  class="sponsor">
   <a href="http://www.allesdruck.de">Druckerei Online</a><!-- 201012011200 allesdruck.de-->
</div>
</div>
</div>
</div>
<div class="main">
<p class="navigation-index">[<a href="#AdaptiveBlurImage">AdaptiveBlurImage</a> • <a href="#AdaptiveSharpenImage">AdaptiveSharpenImage</a> • <a href="#BlurImage">BlurImage</a> • <a href="#ConvolveImage">ConvolveImage</a> • <a href="#DespeckleImage">DespeckleImage</a> • <a href="#EdgeImage">EdgeImage</a> • <a href="#EmbossImage">EmbossImage</a> • <a href="#FilterImage">FilterImage</a> • <a href="#GaussianBlurImage">GaussianBlurImage</a> • <a href="#MedianFilterImage">MedianFilterImage</a> • <a href="#MotionBlurImage">MotionBlurImage</a> • <a href="#PreviewImage">PreviewImage</a> • <a href="#RadialBlurImage">RadialBlurImage</a> • <a href="#ReduceNoiseImage">ReduceNoiseImage</a> • <a href="#SelectiveBlurImage">SelectiveBlurImage</a> • <a href="#ShadeImage">ShadeImage</a> • <a href="#SharpenImage">SharpenImage</a> • <a href="#SpreadImage">SpreadImage</a> • <a href="#UnsharpMaskImage">UnsharpMaskImage</a>]</p>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="AdaptiveBlurImage">AdaptiveBlurImage</a></h2>
<div class="doc-section">
<p>AdaptiveBlurImage() adaptively blurs the image by blurring less intensely near image edges and more intensely far from edges.  We blur the image with a Gaussian operator of the given radius and standard deviation (sigma).  For reasonable results, radius should be larger than sigma.  Use a radius of 0 and AdaptiveBlurImage() selects a suitable radius for you.</p></ol>
<p>The format of the AdaptiveBlurImage method is:</p>
<pre class="code">
  Image *AdaptiveBlurImage(const Image *image,const double radius,
    const double sigma,ExceptionInfo *exception)
  Image *AdaptiveBlurImageChannel(const Image *image,
    const ChannelType channel,double radius,const double sigma,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center pixel.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Laplacian, in pixels.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="AdaptiveSharpenImage">AdaptiveSharpenImage</a></h2>
<div class="doc-section">
<p>AdaptiveSharpenImage() adaptively sharpens the image by sharpening more intensely near image edges and less intensely far from edges. We sharpen the image with a Gaussian operator of the given radius and standard deviation (sigma).  For reasonable results, radius should be larger than sigma.  Use a radius of 0 and AdaptiveSharpenImage() selects a suitable radius for you.</p></ol>
<p>The format of the AdaptiveSharpenImage method is:</p>
<pre class="code">
  Image *AdaptiveSharpenImage(const Image *image,const double radius,
    const double sigma,ExceptionInfo *exception)
  Image *AdaptiveSharpenImageChannel(const Image *image,
    const ChannelType channel,double radius,const double sigma,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center pixel.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Laplacian, in pixels.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="BlurImage">BlurImage</a></h2>
<div class="doc-section">
<p>BlurImage() blurs an image.  We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma).  For reasonable results, the radius should be larger than sigma.  Use a radius of 0 and BlurImage() selects a suitable radius for you.</p></ol>
<p>BlurImage() differs from GaussianBlurImage() in that it uses a separable kernel which is faster but mathematically equivalent to the non-separable kernel.</p></ol>
<p>The format of the BlurImage method is:</p>
<pre class="code">
  Image *BlurImage(const Image *image,const double radius,
    const double sigma,ExceptionInfo *exception)
  Image *BlurImageChannel(const Image *image,const ChannelType channel,
    const double radius,const double sigma,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center pixel.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Gaussian, in pixels.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="ConvolveImage">ConvolveImage</a></h2>
<div class="doc-section">
<p>ConvolveImage() applies a custom convolution kernel to the image.</p></ol>
<p>The format of the ConvolveImage method is:</p>
<pre class="code">
  Image *ConvolveImage(const Image *image,const unsigned long order,
    const double *kernel,ExceptionInfo *exception)
  Image *ConvolveImageChannel(const Image *image,const ChannelType channel,
    const unsigned long order,const double *kernel,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>order</h5>
<ol><p>the number of columns and rows in the filter kernel.</p></ol>
<h5>kernel</h5>
<ol><p>An array of double representing the convolution kernel.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="DespeckleImage">DespeckleImage</a></h2>
<div class="doc-section">
<p>DespeckleImage() reduces the speckle noise in an image while perserving the edges of the original image.</p></ol>
<p>The format of the DespeckleImage method is:</p>
<pre class="code">
  Image *DespeckleImage(const Image *image,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="EdgeImage">EdgeImage</a></h2>
<div class="doc-section">
<p>EdgeImage() finds edges in an image.  Radius defines the radius of the convolution filter.  Use a radius of 0 and EdgeImage() selects a suitable radius for you.</p></ol>
<p>The format of the EdgeImage method is:</p>
<pre class="code">
  Image *EdgeImage(const Image *image,const double radius,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the pixel neighborhood.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="EmbossImage">EmbossImage</a></h2>
<div class="doc-section">
<p>EmbossImage() returns a grayscale image with a three-dimensional effect. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma).  For reasonable results, radius should be larger than sigma.  Use a radius of 0 and Emboss() selects a suitable radius for you.</p></ol>
<p>The format of the EmbossImage method is:</p>
<pre class="code">
  Image *EmbossImage(const Image *image,const double radius,
    const double sigma,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the pixel neighborhood.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Gaussian, in pixels.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="FilterImage">FilterImage</a></h2>
<div class="doc-section">
<p>FilterImage() applies a custom convolution kernel to the image.</p></ol>
<p>The format of the FilterImage method is:</p>
<pre class="code">
  Image *FilterImage(const Image *image,const KernelInfo *kernel,
    ExceptionInfo *exception)
  Image *FilterImageChannel(const Image *image,const ChannelType channel,
    const KernelInfo *kernel,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>kernel</h5>
<ol><p>the filtering kernel.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="GaussianBlurImage">GaussianBlurImage</a></h2>
<div class="doc-section">
<p>GaussianBlurImage() blurs an image.  We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, the radius should be larger than sigma.  Use a radius of 0 and GaussianBlurImage() selects a suitable radius for you</p></ol>
<p>The format of the GaussianBlurImage method is:</p>
<pre class="code">
  Image *GaussianBlurImage(const Image *image,onst double radius,
    const double sigma,ExceptionInfo *exception)
  Image *GaussianBlurImageChannel(const Image *image,
    const ChannelType channel,const double radius,const double sigma,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center pixel.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Gaussian, in pixels.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="MedianFilterImage">MedianFilterImage</a></h2>
<div class="doc-section">
<p>MedianFilterImage() applies a digital filter that improves the quality of a noisy image.  Each pixel is replaced by the median in a set of neighboring pixels as defined by radius.</p></ol>
<p>The algorithm was contributed by Mike Edmonds and implements an insertion sort for selecting median color-channel values.  For more on this algorithm see "Skip Lists: A probabilistic Alternative to Balanced Trees" by William Pugh in the June 1990 of Communications of the ACM.</p></ol>
<p>The format of the MedianFilterImage method is:</p>
<pre class="code">
  Image *MedianFilterImage(const Image *image,const double radius,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the pixel neighborhood.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="MotionBlurImage">MotionBlurImage</a></h2>
<div class="doc-section">
<p>MotionBlurImage() simulates motion blur.  We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma.  Use a radius of 0 and MotionBlurImage() selects a suitable radius for you. Angle gives the angle of the blurring motion.</p></ol>
<p>Andrew Protano contributed this effect.</p></ol>
<p>The format of the MotionBlurImage method is:</p>
<pre class="code">
      Image *MotionBlurImage(const Image *image,const double radius,
  const double sigma,const double angle,ExceptionInfo *exception)
      Image *MotionBlurImageChannel(const Image *image,const ChannelType channel,
  const double radius,const double sigma,const double angle,
  ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center</p>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center pixel.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Gaussian, in pixels.</p></ol>
<h5>angle</h5>
<ol><p>Apply the effect along this angle.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="PreviewImage">PreviewImage</a></h2>
<div class="doc-section">
<p>PreviewImage() tiles 9 thumbnails of the specified image with an image processing operation applied with varying parameters.  This may be helpful pin-pointing an appropriate parameter for a particular image processing operation.</p></ol>
<p>The format of the PreviewImages method is:</p>
<pre class="code">
  Image *PreviewImages(const Image *image,const PreviewType preview,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>preview</h5>
<ol><p>the image processing operation.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="RadialBlurImage">RadialBlurImage</a></h2>
<div class="doc-section">
<p>RadialBlurImage() applies a radial blur to the image.</p></ol>
<p>Andrew Protano contributed this effect.</p></ol>
<p>The format of the RadialBlurImage method is:</p>
<pre class="code">
      Image *RadialBlurImage(const Image *image,const double angle,
  ExceptionInfo *exception)
      Image *RadialBlurImageChannel(const Image *image,const ChannelType channel,
  const double angle,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>angle</h5>
<ol><p>the angle of the radial blur.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="ReduceNoiseImage">ReduceNoiseImage</a></h2>
<div class="doc-section">
<p>ReduceNoiseImage() smooths the contours of an image while still preserving edge information.  The algorithm works by replacing each pixel with its neighbor closest in value.  A neighbor is defined by radius.  Use a radius of 0 and ReduceNoise() selects a suitable radius for you.</p></ol>
<p>The format of the ReduceNoiseImage method is:</p>
<pre class="code">
  Image *ReduceNoiseImage(const Image *image,const double radius,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the pixel neighborhood.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="SelectiveBlurImage">SelectiveBlurImage</a></h2>
<div class="doc-section">
<p>SelectiveBlurImage() selectively blur pixels within a contrast threshold. It is similar to the unsharpen mask that sharpens everything with contrast above a certain threshold.</p></ol>
<p>The format of the SelectiveBlurImage method is:</p>
<pre class="code">
  Image *SelectiveBlurImage(const Image *image,const double radius,
    const double sigma,const double threshold,ExceptionInfo *exception)
  Image *SelectiveBlurImageChannel(const Image *image,
    const ChannelType channel,const double radius,const double sigma,
    const double threshold,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center pixel.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Gaussian, in pixels.</p></ol>
<h5>threshold</h5>
<ol><p>only pixels within this contrast threshold are included in the blur operation.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="ShadeImage">ShadeImage</a></h2>
<div class="doc-section">
<p>ShadeImage() shines a distant light on an image to create a three-dimensional effect. You control the positioning of the light with azimuth and elevation; azimuth is measured in degrees off the x axis and elevation is measured in pixels above the Z axis.</p></ol>
<p>The format of the ShadeImage method is:</p>
<pre class="code">
  Image *ShadeImage(const Image *image,const MagickBooleanType gray,
    const double azimuth,const double elevation,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>gray</h5>
<ol><p>A value other than zero shades the intensity of each pixel.</p></ol>
<h5>azimuth, elevation</h5>
<ol><p>Define the light source direction.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="SharpenImage">SharpenImage</a></h2>
<div class="doc-section">
<p>SharpenImage() sharpens the image.  We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma).  For reasonable results, radius should be larger than sigma.  Use a radius of 0 and SharpenImage() selects a suitable radius for you.</p></ol>
<p>Using a separable kernel would be faster, but the negative weights cancel out on the corners of the kernel producing often undesirable ringing in the filtered result; this can be avoided by using a 2D gaussian shaped image sharpening kernel instead.</p></ol>
<p>The format of the SharpenImage method is:</p>
<pre class="code">
      Image *SharpenImage(const Image *image,const double radius,
  const double sigma,ExceptionInfo *exception)
      Image *SharpenImageChannel(const Image *image,const ChannelType channel,
  const double radius,const double sigma,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center pixel.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Laplacian, in pixels.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="SpreadImage">SpreadImage</a></h2>
<div class="doc-section">
<p>SpreadImage() is a special effects method that randomly displaces each pixel in a block defined by the radius parameter.</p></ol>
<p>The format of the SpreadImage method is:</p>
<pre class="code">
  Image *SpreadImage(const Image *image,const double radius,
    ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>radius</h5>
<ol><p>Choose a random pixel in a neighborhood of this extent.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="UnsharpMaskImage">UnsharpMaskImage</a></h2>
<div class="doc-section">
<p>UnsharpMaskImage() sharpens one or more image channels.  We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma).  For reasonable results, radius should be larger than sigma.  Use a radius of 0 and UnsharpMaskImage() selects a suitable radius for you.</p></ol>
<p>The format of the UnsharpMaskImage method is:</p>
<pre class="code">
      Image *UnsharpMaskImage(const Image *image,const double radius,
  const double sigma,const double amount,const double threshold,
  ExceptionInfo *exception)
      Image *UnsharpMaskImageChannel(const Image *image,
  const ChannelType channel,const double radius,const double sigma,
  const double amount,const double threshold,ExceptionInfo *exception)
</pre>
<p>A description of each parameter follows:</p></ol>
<h5>image</h5>
<ol><p>the image.</p></ol>
<h5>channel</h5>
<ol><p>the channel type.</p></ol>
<h5>radius</h5>
<ol><p>the radius of the Gaussian, in pixels, not counting the center pixel.</p></ol>
<h5>sigma</h5>
<ol><p>the standard deviation of the Gaussian, in pixels.</p></ol>
<h5>amount</h5>
<ol><p>the percentage of the difference between the original and the blur image that is added back into the original.</p></ol>
<h5>threshold</h5>
<ol><p>the threshold in pixels needed to apply the diffence amount.</p></ol>
<h5>exception</h5>
<ol><p>return any errors or warnings in this structure.</p></ol>
 </div>
</div>
<div id="linkbar">
 <!--    <span id="linkbar-west"> </span>  -->
    <span id="linkbar-center">
      <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
    </span>
    <span id="linkbar-east"> </span>
  </div>
  <div class="footer">
    <span id="footer-west">© 1999-2010 ImageMagick Studio LLC</span>
    <span id="footer-east"> <a href="../http://www.imagemagick.org/script/contact.php">Contact the Wizards</a></span>
  </div>
  <div style="clear: both; margin: 0; width: 100%; "></div>
</body>
</html>
 |