CImage:FiltEllipse
The FiltEllipse method smooths an image by applying a filter kernel having equal weights in an elliptical shape. The filter can be rotated.
bResult = CImage:FiltEllipse( cols, rows, angle, CRect=nil ) |
This method smooths the image using an elliptical shaped filter kernel having equal weights. By comparison, FiltBinomial uses an elliptical shape with binomial coefficient weights but cannot be rotated. The FiltGaussian method has similar properties of elongation and rotation but uses Gaussian weights rather than equal weights.
Suppose an image is displayed in a CImageView named V. The following script fragment smooths the region [100:300, 400:800] using a 5x11 ellipse filter rotated 45 degrees:
|
-- attach the current displayed image |
|
-- setup the rectangle to process |
|
-- apply the filter |
|
-- update the display after the scale |
|
-- done with the CRect |