IIXC_Page::FilterMedian Method
From PDF XChange PDF SDK
The method applies Median filtering to the specified page.
Median filtering reduces noise in an image by blending the brightness of pixels within a selection. The filter searches the radius of a pixel selection for pixels of similar brightness, discarding pixels that differ too much from adjacent pixels, and replaces the center pixel with the median brightness value of the searched pixels. This filter is useful for eliminating or reducing the effect of motion on an image.
Syntax
HRESULT FilterMedian([in] ULONG nLevel, [in] ULONG nThresold, [in] ULONG nFlags);
Parameters
- nLevel
- [in] Specifies the radius of a pixel where median brughtness value are searched. This value can be in range from 1 to 100.
- nThresold
- [in] Specifies the threshold for filter. This value can be in range from 0 to 255.
- nFlags
- [in] Combination of flags which specifies how the data will be processed.
Return Value
Returns S_OK if operation was successful or error code in other cases.