EasyImage::ConvolHighpass1
Filters an image using a 3x3 high-pass kernel and stores the absolute value (magnitude) of the result in the destination image.
Namespace: Euresys::Open_eVision
[C++]
static void ConvolHighpass1(
EROIBW8* sourceImage,
EROIBW8* destinationImage
)
static void ConvolHighpass1(
EROIBW8* sourceImage
)
static void ConvolHighpass1(
EROIBW16* sourceImage,
EROIBW16* destinationImage
)
static void ConvolHighpass1(
EROIBW16* sourceImage
)
static void ConvolHighpass1(
EROIC24* sourceImage,
EROIC24* destinationImage
)
static void ConvolHighpass1(
EROIC24* sourceImage
)
static void ConvolHighpass1(
EROIBW8* sourceImage,
const ERegion& region,
EROIBW8* destinationImage
)
static void ConvolHighpass1(
EROIBW8* sourceImage,
const ERegion& region
)
static void ConvolHighpass1(
EROIBW16* sourceImage,
const ERegion& region,
EROIBW16* destinationImage
)
static void ConvolHighpass1(
EROIBW16* sourceImage,
const ERegion& region
)
static void ConvolHighpass1(
EROIC24* sourceImage,
const ERegion& region,
EROIC24* destinationImage
)
static void ConvolHighpass1(
EROIC24* sourceImage,
const ERegion& region
)
static void ConvolHighpass1(
EROIBW8* sourceImage,
const ERegion& region,
const EFrame& frame,
EROIBW8* destinationImage
)
static void ConvolHighpass1(
EROIBW8* sourceImage,
const ERegion& region,
const EFrame& frame
)
static void ConvolHighpass1(
EROIBW16* sourceImage,
const ERegion& region,
const EFrame& frame,
EROIBW16* destinationImage
)
static void ConvolHighpass1(
EROIBW16* sourceImage,
const ERegion& region,
const EFrame& frame
)
static void ConvolHighpass1(
EROIC24* sourceImage,
const ERegion& region,
const EFrame& frame,
EROIC24* destinationImage
)
static void ConvolHighpass1(
EROIC24* sourceImage,
const ERegion& region,
const EFrame& frame
)
Parameters
sourceImage
Pointer to the source image/ROI.
destinationImage
Pointer to the destination image/ROI. If NULL (default), this operation is destructive (i.e. applied to the source image).
region
Region to apply the function on.
frame
Frame of reference in which the region is defined.
Remarks
Filtering kernel:
| 0 | -1 | 0 |
| -1 | 5 | -1 |
| 0 | -1 | 0 |
EasyImage.ConvolHighpass1
Filters an image using a 3x3 high-pass kernel and stores the absolute value (magnitude) of the result in the destination image.
Namespace: Euresys.Open_eVision
[C#]
static void ConvolHighpass1(
EROIBW8 sourceImage,
EROIBW8 destinationImage
)
static void ConvolHighpass1(
EROIBW8 sourceImage
)
static void ConvolHighpass1(
EROIBW16 sourceImage,
EROIBW16 destinationImage
)
static void ConvolHighpass1(
EROIBW16 sourceImage
)
static void ConvolHighpass1(
EROIC24 sourceImage,
EROIC24 destinationImage
)
static void ConvolHighpass1(
EROIC24 sourceImage
)
static void ConvolHighpass1(
EROIBW8 sourceImage,
ERegion region,
EROIBW8 destinationImage
)
static void ConvolHighpass1(
EROIBW8 sourceImage,
ERegion region
)
static void ConvolHighpass1(
EROIBW16 sourceImage,
ERegion region,
EROIBW16 destinationImage
)
static void ConvolHighpass1(
EROIBW16 sourceImage,
ERegion region
)
static void ConvolHighpass1(
EROIC24 sourceImage,
ERegion region,
EROIC24 destinationImage
)
static void ConvolHighpass1(
EROIC24 sourceImage,
ERegion region
)
static void ConvolHighpass1(
EROIBW8 sourceImage,
ERegion region,
EFrame frame,
EROIBW8 destinationImage
)
static void ConvolHighpass1(
EROIBW8 sourceImage,
ERegion region,
EFrame frame
)
static void ConvolHighpass1(
EROIBW16 sourceImage,
ERegion region,
EFrame frame,
EROIBW16 destinationImage
)
static void ConvolHighpass1(
EROIBW16 sourceImage,
ERegion region,
EFrame frame
)
static void ConvolHighpass1(
EROIC24 sourceImage,
ERegion region,
EFrame frame,
EROIC24 destinationImage
)
static void ConvolHighpass1(
EROIC24 sourceImage,
ERegion region,
EFrame frame
)
Parameters
sourceImage
Pointer to the source image/ROI.
destinationImage
Pointer to the destination image/ROI. If NULL (default), this operation is destructive (i.e. applied to the source image).
region
Region to apply the function on.
frame
Frame of reference in which the region is defined.
Remarks
Filtering kernel:
| 0 | -1 | 0 |
| -1 | 5 | -1 |
| 0 | -1 | 0 |
EasyImage.ConvolHighpass1
Filters an image using a 3x3 high-pass kernel and stores the absolute value (magnitude) of the result in the destination image.
Module: open_evision
[Python]
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW8
destinationImage: EROIBW8
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW8
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW16
destinationImage: EROIBW16
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW16
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIC24
destinationImage: EROIC24
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIC24
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW8
region: ERegion
destinationImage: EROIBW8
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW8
region: ERegion
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW16
region: ERegion
destinationImage: EROIBW16
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW16
region: ERegion
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIC24
region: ERegion
destinationImage: EROIC24
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIC24
region: ERegion
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW8
region: ERegion
frame: EFrame
destinationImage: EROIBW8
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW8
region: ERegion
frame: EFrame
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW16
region: ERegion
frame: EFrame
destinationImage: EROIBW16
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIBW16
region: ERegion
frame: EFrame
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIC24
region: ERegion
frame: EFrame
destinationImage: EROIC24
) -> None
@staticmethod
ConvolHighpass1(
sourceImage: EROIC24
region: ERegion
frame: EFrame
) -> None
Parameters
sourceImage
Pointer to the source image/ROI.
destinationImage
Pointer to the destination image/ROI. If NULL (default), this operation is destructive (i.e. applied to the source image).
region
Region to apply the function on.
frame
Frame of reference in which the region is defined.
Remarks
Filtering kernel:
| 0 | -1 | 0 |
| -1 | 5 | -1 |
| 0 | -1 | 0 |