ImageSharpen()

Sharpens or Blurs the image

Usage

BOOLEAN = ImageSharpen( name, gain )
Argument Summary
name the image object
gain if gain less than 0, then it is blurred, if gain == 0, then no effect, if gain greater than 0 then sharpened

Calling

Supports named-parameter calling allowing you to use the function like:

ImageSharpen(
   name=?, 
   gain=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageSharpen( ArgumentCollection={
   name : ?, 
   gain : ?
} );