CImage:FiltBinomial CImage:FiltGaussian

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.

Syntax

bResult = CImage:FiltEllipse( cols, rows, angle, CRect=nil )

    cols is the column length of the filter kernel.

    rows is the row length of the filter kernel.

    angle is the rotation angle in degrees.

    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.

Remarks

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.

Example

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:

I = V:GetImage()

-- attach the current displayed image

R = CRect:new(100,300,400,800)

-- setup the rectangle to process

I:FiltEllipse(5,11,45,R)

-- apply the filter

V:Update()

-- update the display after the scale

R:delete()

-- done with the CRect

Related Topics

CImage, FiltGaussian, FiltBinomial, FiltRect