cristy | 701db31 | 2009-11-20 03:14:08 +0000 | [diff] [blame^] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % M M OOO RRRR PPPP H H OOO L OOO GGGG Y Y % |
| 7 | % MM MM O O R R P P H H O O L O O G Y Y % |
| 8 | % M M M O O RRRR PPPP HHHHH O O L O O G GGG Y % |
| 9 | % M M O O R R P H H O O L O O G G Y % |
| 10 | % M M OOO R R P H H OOO LLLLL OOO GGG Y % |
| 11 | % % |
| 12 | % % |
| 13 | % MagickCore Morphology Methods % |
| 14 | % % |
| 15 | % Software Design % |
| 16 | % Anthony Thyssen % |
| 17 | % September 2009 % |
| 18 | % % |
| 19 | % % |
| 20 | % Copyright 1999-2009 ImageMagick Studio LLC, a non-profit organization % |
| 21 | % dedicated to making software imaging solutions freely available. % |
| 22 | % % |
| 23 | % You may not use this file except in compliance with the License. You may % |
| 24 | % obtain a copy of the License at % |
| 25 | % % |
| 26 | % http://www.imagemagick.org/script/license.php % |
| 27 | % % |
| 28 | % Unless required by applicable law or agreed to in writing, software % |
| 29 | % distributed under the License is distributed on an "AS IS" BASIS, % |
| 30 | % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % |
| 31 | % See the License for the specific language governing permissions and % |
| 32 | % limitations under the License. % |
| 33 | % % |
| 34 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 35 | % |
| 36 | % |
| 37 | */ |
| 38 | |
| 39 | /* |
| 40 | Include declarations. |
| 41 | */ |
| 42 | #include "magick/studio.h" |
| 43 | #include "magick/cache-view.h" |
| 44 | #include "magick/color-private.h" |
| 45 | #include "magick/enhance.h" |
| 46 | #include "magick/exception.h" |
| 47 | #include "magick/exception-private.h" |
| 48 | #include "magick/hashmap.h" |
| 49 | #include "magick/image.h" |
| 50 | #include "magick/list.h" |
| 51 | #include "magick/memory_.h" |
| 52 | #include "magick/monitor-private.h" |
| 53 | #include "magick/morphology.h" |
| 54 | #include "magick/pixel-private.h" |
| 55 | #include "magick/prepress.h" |
| 56 | #include "magick/quantize.h" |
| 57 | #include "magick/registry.h" |
| 58 | #include "magick/semaphore.h" |
| 59 | #include "magick/splay-tree.h" |
| 60 | #include "magick/statistic.h" |
| 61 | #include "magick/string_.h" |