EasyImage::PixelMax

Computes the maximum gray-level value in an image.

Namespace: Euresys::Open_eVision

[C++]

static void PixelMax(
   const EROIBW8* sourceImage,
   EBW8& maximumValue
)

static void PixelMax(
   const EROIBW16* sourceImage,
   EBW16& maximumValue
)

static void PixelMax(
   const EROIBW8* sourceImage,
   const ERegion& region,
   EBW8& maximumValue
)

static void PixelMax(
   const EROIBW16* sourceImage,
   const ERegion& region,
   EBW16& maximumValue
)

static void PixelMax(
   const EROIBW8* sourceImage,
   const EROIBW8* mask,
   EBW8& maximumValue
)

static void PixelMax(
   const EROIBW16* sourceImage,
   const EROIBW8* mask,
   EBW16& maximumValue
)

Parameters

sourceImage

Pointer to the source image/ROI.

maximumValue

Reference to the maximum value.

region

Optional reference to a region to apply the function only on a particular region in the image.

mask

Pointer to a mask to apply the function only on a particular region in the image. Note: the mask must have the same size as the source image.

EasyImage.PixelMax

Computes the maximum gray-level value in an image.

Namespace: Euresys.Open_eVision

[C#]

static void PixelMax(
   EROIBW8 sourceImage,
   out EBW8 maximumValue
)

static void PixelMax(
   EROIBW16 sourceImage,
   out EBW16 maximumValue
)

static void PixelMax(
   EROIBW8 sourceImage,
   ERegion region,
   out EBW8 maximumValue
)

static void PixelMax(
   EROIBW16 sourceImage,
   ERegion region,
   out EBW16 maximumValue
)

static void PixelMax(
   EROIBW8 sourceImage,
   EROIBW8 mask,
   out EBW8 maximumValue
)

static void PixelMax(
   EROIBW16 sourceImage,
   EROIBW8 mask,
   out EBW16 maximumValue
)

Parameters

sourceImage

Pointer to the source image/ROI.

maximumValue

Reference to the maximum value.

region

Optional reference to a region to apply the function only on a particular region in the image.

mask

Pointer to a mask to apply the function only on a particular region in the image. Note: the mask must have the same size as the source image.

EasyImage.PixelMax

Computes the maximum gray-level value in an image.

Module: open_evision

[Python]

@staticmethod
PixelMax(
    sourceImage: EROIBW8
    maximumValue: EBW8
) -> None

@staticmethod
PixelMax(
    sourceImage: EROIBW16
    maximumValue: EBW16
) -> None

@staticmethod
PixelMax(
    sourceImage: EROIBW8
    region: ERegion
    maximumValue: EBW8
) -> None

@staticmethod
PixelMax(
    sourceImage: EROIBW16
    region: ERegion
    maximumValue: EBW16
) -> None

@staticmethod
PixelMax(
    sourceImage: EROIBW8
    mask: EROIBW8
    maximumValue: EBW8
) -> None

@staticmethod
PixelMax(
    sourceImage: EROIBW16
    mask: EROIBW8
    maximumValue: EBW16
) -> None

Parameters

sourceImage

Pointer to the source image/ROI.

maximumValue

Reference to the maximum value.

region

Optional reference to a region to apply the function only on a particular region in the image.

mask

Pointer to a mask to apply the function only on a particular region in the image. Note: the mask must have the same size as the source image.