ImgPolynomialFilter |
Top Previous Next |
Prototype
ImgPolynomialFilter(intImageHandle, intWidth, intHeight, intGrade)
Description
Apply a polynomial filter on grayscale images.
Parameters
intImageHandle: integer value corresponding to the image handle.
intWidth: the width of the filter.
intHeight: the height of the filter.
intGrade: the grade of polynome approximated.
Returned value
None.
Notes
None.
Example
// Apply a 5x5 polynomial 2nd grade filter on the image ImgPolynomialFilter(_CurrentImage, 5, 5, 2); |