|
CImCombine:MaxClip
The MaxClip method merges the pixel values
after clipping the maximum value from the distribution at each
point.
Syntax
|
CImage = CImCombine:MmClip( CImageSet )
|
CImageSet contains the collection of images to be
combined.
CImage is a new image created by this method.
On success,
this method returns a new
CImage.
On failure,
this method returns
nil.
Remarks
Each pixel in the output image is the mean value of
all images after rejection of the single highest value at each
location. This is equivalent to the
AlphaClip method with nHigh=1 and nLow=0. To
work properly, the images must be normalized as part of the
combining.
Example
Suppose a
CImageSet named S exists. The
following script combines the images by the MaxClip method.
The images are normalized by the Median statistic computed inside
the central 10% of the image:
|
C = new_imcombine()
|
|
|
R = new_rect(10,50,10,50)
|
|
|
C:SetRelRect( R )
|
|
|
C:SetNormStat("median")
|
|
|
C:SetNormMethod("scale")
|
|
|
I = C:MaxClip( S )
|
|
|
I:Display()
|
|
|
C:delete()
|
|
Related Topics
CImCombine class
CImageSet class
CImage class
CRect class
Mira Pro x64 Script User's Guide, v.8.76 Copyright Ⓒ 2024
Mirametrics, Inc. All Rights Reserved.
|