EasyImage::ConvolLaplacianX
Takes the horizontal second derivative and stores the absolute value (magnitude) of the result in the destination image.
Namespace: Euresys::Open_eVision
[C++]
static void ConvolLaplacianX(
EROIBW8
* sourceImage,
EROIBW8
* destinationImage
)
static void ConvolLaplacianX(
EROIBW16
* sourceImage,
EROIBW16
* destinationImage
)
static void ConvolLaplacianX(
EROIC24
* sourceImage,
EROIC24
* destinationImage
)
static void ConvolLaplacianX(
EROIBW8
* sourceImage,
const ERegion
& region,
EROIBW8
* destinationImage
)
static void ConvolLaplacianX(
EROIBW16
* sourceImage,
const ERegion
& region,
EROIBW16
* destinationImage
)
static void ConvolLaplacianX(
EROIC24
* sourceImage,
const ERegion
& region,
EROIC24
* destinationImage
)
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.
Remarks
Filtering kernel:
1 | -2 | 1 |
EasyImage.ConvolLaplacianX
Takes the horizontal second derivative and stores the absolute value (magnitude) of the result in the destination image.
Namespace: Euresys.Open_eVision
[C#]
static void ConvolLaplacianX(
EROIBW8
sourceImage,
EROIBW8
destinationImage
)
static void ConvolLaplacianX(
EROIBW16
sourceImage,
EROIBW16
destinationImage
)
static void ConvolLaplacianX(
EROIC24
sourceImage,
EROIC24
destinationImage
)
static void ConvolLaplacianX(
EROIBW8
sourceImage,
ERegion
region,
EROIBW8
destinationImage
)
static void ConvolLaplacianX(
EROIBW16
sourceImage,
ERegion
region,
EROIBW16
destinationImage
)
static void ConvolLaplacianX(
EROIC24
sourceImage,
ERegion
region,
EROIC24
destinationImage
)
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.
Remarks
Filtering kernel:
1 | -2 | 1 |
EasyImage.ConvolLaplacianX
Takes the horizontal second derivative and stores the absolute value (magnitude) of the result in the destination image.
Module: open_evision
[Python]
@staticmethod
ConvolLaplacianX(
sourceImage: EROIBW8
destinationImage: EROIBW8
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIBW8
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIBW16
destinationImage: EROIBW16
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIBW16
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIC24
destinationImage: EROIC24
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIC24
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIBW8
region: ERegion
destinationImage: EROIBW8
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIBW8
region: ERegion
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIBW16
region: ERegion
destinationImage: EROIBW16
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIBW16
region: ERegion
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIC24
region: ERegion
destinationImage: EROIC24
) -> None
@staticmethod
ConvolLaplacianX(
sourceImage: EROIC24
region: ERegion
) -> 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.
Remarks
Filtering kernel:
1 | -2 | 1 |