Removing Noise

[Document/Medical only] The L_DespeckleBitmap function is designed specifically for removing specks from 1-bit images, such as FAX transmissions or scanned documents.

L_MedianFilterBitmap is an effective general function for removing salt-and-pepper noise from any kind of image. You control the strength of the function by specifying the size of the neighborhood (the surrounding pixels used for calculating the median value). This function causes minimal blurring of the image.

The L_AverageFilterBitmap function can be used to remove uniform and Gaussian noise, but there is more blurring of the image than with the median filter. You control the strength of the function by specifying the size of the neighborhood (the surrounding pixels used for calculating the arithmetic mean).

The L_AddBitmaps function can be used to average the bitmaps in a list, eliminating random noise contained in the images.

The L_AddWeightedBitmaps function can be used to average the bitmaps in a list, eliminating random noise contained in the images. Typically, you would call this function for a series of images taken for the same object at short intervals. This function can eliminate random noise by performing a weighted average.

The L_HighPassFilterBitmap function removes low frequency details in a bitmap, resulting in a sharpened image. The effect is opposite to that of the Gaussian Blur filter (L_GaussianFilterBitmap). Unlike the L_UnsharpMaskBitmap function, when using this function image noise is not increased.

The L_GaussianFilterBitmap function smooths or blurs an image by applying a Gaussian filter to each pixel of the bitmap. The amount of blur is determined by the size of the neighborhood used by the function.

[Document/Medical only] The binary filters (for erosion and dilation of black objects) can be used for noise removal. The L_BinaryFilterBitmap function applies directional binary filters. The L_MaxFilterBitmap and L_MinFilterBitmap functions let you control the neighborhood size for erosion or dilation. One noise removal technique with these functions is to create two copies of a bitmap, apply a dilation filter to one of them and an erosion filter to the other, then combine the two using L_CombineBitmap with the CB_OP_AVG (averaging) flag.

[Document/Medical only] The L_AutoBinaryBitmap function transforms the bitmap into a binary image using a threshold calculated automatically based on statistical features of the bitmap. Best results are obtained with grayscale bitmaps.

The L_DeinterlaceBitmap function deinterlaces video source images by removing the black lines. It proceeds by merging lines in the image together and/or blending them together.

The L_SmoothEdgesBitmap function smoothes the edges of a bitmap.

The L_DynamicBinaryBitmap function converts a bitmap into a black and white image without changing its bits per pixel.

Fourier Transforms

Fourier Transforms are useful in removing harmonic noise like:

Herringbone patterns seen in video images

Sine wave patterns

Moiré patterns

Halftone patterns

Interference patterns

Fourier Transforms are also useful in removing noise from video signals and CCDs.

Fourier transforms convert an image from one where intensity varies over space into one where the intensity varies with frequency. After an image has been described (transformed) as a series of frequencies and phase, that information can then be analyzed using a power spectrum. The power spectrum is a two-dimensional map that plots the frequency of pixel intensity values. Low frequencies lie close to the origin and high frequencies close to the edges. From the analysis suitable filters can be applied to remove those parts of the image that correspond to the noise in the image. The image can then be retransformed back into the original image, only without the noise.

A Discrete Fourier Transform is a Fourier transform that uses a series which has values that have both a real and an imaginary component. Discrete Fourier transforms reveal periodicities in the data as well as the relative strengths of those periodicities.

Discrete Fourier Transforms can take a long time to compute. To reduce computing time, Fast Fourier Transforms can be used, which reduce the number of computations from 2N2 to 2N Lg N. However, using a Fast Fourier Transform requires that the number of points in the series be a power of 2.

The following functions provide Fourier transform capabilities:

L_AllocFTArray

Allocates a FTARRAY structure large enough to hold Fourier Transform coefficients

L_DFTBitmap

Computes the Discrete Fourier Transform of an image or the Inverse Discrete Fourier Transform, whichever is specified.

L_FFTBitmap

Computes the Fast Fourier Transform of an image or the Inverse Fast Fourier Transform, whichever is specified.

L_FreeFTArray

Frees the 2D storage array that was allocated by L_AllocFTArray.

L_FTDisplayBitmap

Converts the frequency harmonics amplitude or phase to a bitmap. It allows displaying the results of FFT and DFT as a bitmap.

L_FrqFilterBitmap

Filters the frequency harmonics according to the range rectangle.

L_FrqFilterMaskBitmap

Creates a mask filter for use in removing specific frequency components from a bitmap.