CImCombine:GeometricMean
The GeometricMean method merges the pixel values using the geometric mean statistic at each location.
CImage = CImCombine:GeometricMean( CImageSet ) |
Each pixel in the output image is the geometric mean of values at the same location in all the images of the CImageSet. The geometric mean assigns each pixel a weight that is inversely proportional to its value-distance from the mean. No rejection ("clipping") is performed..
Suppose a CImageSet named S exists. The following script fragment combines the images by the Mean method 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 |