The previous bug was probably my bad, during the development of Morphology.
The new version is recursive, so as to correctly destroy a multi-kernel list which is requires by the second morphology implementation phase whcih required applying morphology operators against multiple kernels. Specifically HitAndMiss (HMT), Thin, Thick.
At the same time methods of specifying one kernel then generating a list of rotated versions were also added. See IM examples, Morphology, Multi-Kernel List Handling
http://www.imagemagick.org/Usage/morpho ... lti-kernel
At this time this is the primary source of morphology information. I have not yet written a reference summery for the official command line options page. Though others are welcome to give an initial summery.
Morphology is not finished either. I have many things on my ToDo for it.
Code: Select all
* Morphology / Convolve
+ Add faster 2-pass Distance method
+ Add +morphology for higher level methods, and default kernel selection
+ Rotation of any 1-d kernel by given angle (angled linear blurs)
+ Read Kernel Definitions from a text file '@filename'
+ Kernel from small imager(s) '@image' ???
+ More kernels...
- hexagonal shaped kernel
- octogonal shaped kernel
- line of given length and angle
- Calculated Larger sized Angled Deritive Kernels
- Inverse Square falloff convolution kernels
- Expotental falloff convolution kernels.
- add 'filter' and 'filter2d' convolution kernels
+ More Morphology methods...
- True GreyScale Morphology (not simply flat kernel)
- Feather (Like Distance but anti-aliased shape handling)
- Conditional Dilate (a masked multi-point flood fill)
- Final Erode (Peaks in Distance Method)
- Voronoi - Color spread from a given mask of selected pixels
- Diffusion - Blurred color spread from a given mask of pixels
- Distance (MAT) Skeletion Determination (how?)
+ Replace -convolve, -gaussian, -blur, -sharpen etc to use the
new morphology funtions. Also fixs '-bias' bug in these.
Make automatic normalization the default?
+ Also look at -edge and -shade, as these probably use convolve too.
* Image Segmentation
+ Morphology Component Labeling (diamond/square neighbourhoods)
+ Orthogonal segmentation (vertial/horizontal separation)
- mid-gap divisions
- separate gap images
- no gap images
- recursive option
I have no idea when I will next get time to work on or implement ANY of the above.