ImgPolynomialFilter
Previous  Top  Next

Prototype

ImgPolynomialFilter(intImageHandle, intWidth, intHeight, intGrade)

Description

It apply a poyinominial filter on grayscale images.

Parameters

intImageHandle: integer value corresponding to the image handle.
intWidth: the widht of the filter
intHeight: the height of the filter
intGrade: the grade of polynome approximated

Returned value

None.

Notes

None. 

Example

//It apply a 5x5 polynomial 2nd grade filter on the image
ImgPolynominialFilter(_CurrentImage, 5, 5, 2);