EasyImage::BiLevelMedian

Applies a median filter to a bilevel image (median of the gray values in a 3x3 neighborhood).

Namespace: Euresys::Open_eVision

[C++]

void BiLevelMedian(
   EROIBW8* sourceImage,
   EROIBW8* destinationImage,
   OEV_UINT32 halfOfKernelWidth,
   OEV_UINT32 halfOfKernelHeight
)

Parameters

sourceImage

Pointer to the source image/ROI.

destinationImage

Pointer to the destination image/ROI. Must not be the same as source image.

halfOfKernelWidth

Half width of the kernel minus one (by default, halfOfKernelWidth = 1; 0 is allowed).

halfOfKernelHeight

Half height of the kernel minus one (by default, same as halfOfKernelWidth; 0 is allowed).

EasyImage.BiLevelMedian

Applies a median filter to a bilevel image (median of the gray values in a 3x3 neighborhood).

Namespace: Euresys.Open_eVision

[C#]

void BiLevelMedian(
   Euresys.Open_eVision.EROIBW8 sourceImage,
   Euresys.Open_eVision.EROIBW8 destinationImage,
   uint halfOfKernelWidth,
   uint halfOfKernelHeight
)

Parameters

sourceImage

Pointer to the source image/ROI.

destinationImage

Pointer to the destination image/ROI. Must not be the same as source image.

halfOfKernelWidth

Half width of the kernel minus one (by default, halfOfKernelWidth = 1; 0 is allowed).

halfOfKernelHeight

Half height of the kernel minus one (by default, same as halfOfKernelWidth; 0 is allowed).