Copyright © Fred Weinhaus My scripts are available free of charge for non-commercial (non-profit) use, ONLY. For use of my scripts in commercial (for-profit) environments or non-free applications, please contact me (Fred Weinhaus) for licensing arrangements. My email address is fmw at alink dot net. If you: 1) redistribute, 2) incorporate any of these scripts into other free applications or 3) reprogram them in another scripting language, then you must contact me for permission, especially if the result might be used in a commercial or for-profit environment. Usage, whether stated or not in the script, is restricted to the above licensing arrangements. It is also subject, in a subordinate manner, to the ImageMagick license, which can be found at: http://www.imagemagick.org/script/license.php Please read the Pointers For Use on my home page to properly install and customize my scripts. |
Applies edge extraction to image. |
last modified: December 15, 2018
USAGE: edges [-w width ] [-b brightness] [-s smoothing] [-g] infile outfile
-w ... width ........ width of edges; integer>0; default=2 PURPOSE: To apply edge extraction to image. DESCRIPTION: EdGES applies edge extraction to image. The user may control any or all of the width, brightness and/or smoothing arguments. This script is similar to the Photoshop Glowing Edges filter. ARGUMENTS: -w width ... WIDTh width of extracted edges. Values are integers>0. The default=2. -b brightness ... BRIGHTNESS of edges. Values are floats>=0. The default=5. -s smoothing ... SMOOTHING of the input image to filter out small edges. Values are floast>=0. The default=1. -g ... converts the input image to GRAYSCALE before extracting edges. REQUIREMENTS: IM 6.5.9.3 is required due to the use of -morphology edgeout. CAVEAT: No guarantee that this script will work on all platforms, nor that trapping of inconsistent parameters is complete and foolproof. Use At Your Own Risk. |
Example 1 -- Variation in Width |
||
Original | ||
Arguments: |
Arguments: |
Arguments: |
Example 2 -- Variation in Brightness |
||
Original | ||
Arguments: |
Arguments: |
Arguments: |
Example 3 -- Variation in Smoothing |
||
Original | ||
Arguments: |
Arguments: |
Arguments: |
Example 4 - Edges From Color Image |
|
Original |
Arguments: |
Example 5 - Edges From Color Image With Transparency |
|
Original |
Arguments: |
What the script does is as follows:
This is equivalent to the following IM commands
|