CImCombine:SdevClip
The SdevClip method creates an image who's pixel values are the clipped standard deviation at each point of a CImageSet. At each pixel location, the images with the nHigh highest pixel values and nLow lowest pixel values are rejected from the sample before computing the standard deviation for the output image. For the SdevClip method to work properly, the images must be normalized; this can be done by the combining process..
|
CImage = CImCombine:SdevClip( CImageSet, nHigh, nLow ) |
CImageSet
contains the collection of images to be combined.
nHigh is
the number of high pixel values to clip.
nLow is the
number of low pixel values to clip.
CImage is a
new image created by this method.
On
success, this method returns a new CImage.
On
failure, this method returns nil.
Suppose a CImageSet named S exists. The following script combines the images by the SdevClip method by excluding the 4 highest and 1 lowest pixel values at each point. This statistic is computed after normalizing their luminance 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 median 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, v.8.80 Copyright Ⓒ 2025
Mirametrics, Inc. All Rights Reserved.