CImCombine:AlphaClip
The AlphaClip method merges the pixel values using alpha-clipping to remove some specified number of high and low outlying values at each location.
CImage = CImCombine:AlphaClip( CImageSet, nHigh, nLow ) |
CImageSet contains the collection of images to be combined.
nHigh is the number of highest pixel values to exclude.
nLow is the number of lowest pixel values to exclude.
CImage is a new image created by this method.
On success, this method returns a new CImage.
On failure, this method returns nil.
Each pixel in the output image is the mean value of all images except the nHigh highest values and the nLow lowest values at each location. In order for the AlphaClip method to work properly, normalization must be done as part of the combining.
Suppose a CImageSet named S exists. The following script combines the images by the AlphaClip method by excluding the 2 highest and 1 lowest values from the sample at each location. The images are normalized by the Median statistic computed inside the central 10% of the image:
|
-- create a CImCombine object |
|
-- central 10% of the image |
|
-- specify CImage and CRect to measure |
|
-- use the AlphaClip as the normalization statistic |
|
-- scale to normalize the image set |
|
-- combine the image set and return a new image |
|
-- show the new image |
|
-- when done with S, remove it from memory |
Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics,
Inc. All Rights Reserved.