CImage:FiltMax
The FiltMax method applies a 100-th percentile rank selection filter to the image. This filter replaces each pixel with its neighborhood maximum value.
bResult = CImage:FiltMax( cols, rows, CRect=nil ) |
cols is the column length of the filter kernel.
rows is the row length of the filter kernel.
CRect is the rectangle defining the area to process. If omitted, it defaults to nil and the entire image is processed.
On success, this method returns true.
On failure, this method returns false.
This method selects the neighborhood values having 100% rank surrounding each point of interest. This produces an image that maximally emphasizes all the local "peaks" in the image.
Suppose an image is displayed in a CImageView named V. The following script applies a 7 x 7 maximum value filter to the [100:300, 400:800] pixel region:
|
-- attach the current displayed image |
|
-- setup the rectangle to process |
|
-- apply the filter |
|
-- update the display after the scale |
|
-- done with the CRect |
CImage class, FiltMedian, FiltMin
Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics,
Inc. All Rights Reserved.