EasyImage::ConvolSobelY
Derives an image along Y using a Sobel kernel and stores the absolute value (magnitude) of the result in the destination image.
Namespace: Euresys::Open_eVision
[C++]
static void ConvolSobelY(
EROIBW8* sourceImage,
EROIBW8* destinationImage
)
static void ConvolSobelY(
EROIBW8* sourceImage
)
static void ConvolSobelY(
EROIBW16* sourceImage,
EROIBW16* destinationImage
)
static void ConvolSobelY(
EROIBW16* sourceImage
)
static void ConvolSobelY(
EROIC24* sourceImage,
EROIC24* destinationImage
)
static void ConvolSobelY(
EROIC24* sourceImage
)
static void ConvolSobelY(
EROIBW8* sourceImage,
const ERegion& region,
EROIBW8* destinationImage
)
static void ConvolSobelY(
EROIBW8* sourceImage,
const ERegion& region
)
static void ConvolSobelY(
EROIBW16* sourceImage,
const ERegion& region,
EROIBW16* destinationImage
)
static void ConvolSobelY(
EROIBW16* sourceImage,
const ERegion& region
)
static void ConvolSobelY(
EROIC24* sourceImage,
const ERegion& region,
EROIC24* destinationImage
)
static void ConvolSobelY(
EROIC24* sourceImage,
const ERegion& region
)
static void ConvolSobelY(
EROIBW8* sourceImage,
const ERegion& region,
const EFrame& frame,
EROIBW8* destinationImage
)
static void ConvolSobelY(
EROIBW8* sourceImage,
const ERegion& region,
const EFrame& frame
)
static void ConvolSobelY(
EROIBW16* sourceImage,
const ERegion& region,
const EFrame& frame,
EROIBW16* destinationImage
)
static void ConvolSobelY(
EROIBW16* sourceImage,
const ERegion& region,
const EFrame& frame
)
static void ConvolSobelY(
EROIC24* sourceImage,
const ERegion& region,
const EFrame& frame,
EROIC24* destinationImage
)
static void ConvolSobelY(
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:
| -1 | -2 | -1 |
| 0 | 0 | 0 |
| 1 | 2 | 1 |
EasyImage.ConvolSobelY
Derives an image along Y using a Sobel kernel and stores the absolute value (magnitude) of the result in the destination image.
Namespace: Euresys.Open_eVision
[C#]
static void ConvolSobelY(
EROIBW8 sourceImage,
EROIBW8 destinationImage
)
static void ConvolSobelY(
EROIBW8 sourceImage
)
static void ConvolSobelY(
EROIBW16 sourceImage,
EROIBW16 destinationImage
)
static void ConvolSobelY(
EROIBW16 sourceImage
)
static void ConvolSobelY(
EROIC24 sourceImage,
EROIC24 destinationImage
)
static void ConvolSobelY(
EROIC24 sourceImage
)
static void ConvolSobelY(
EROIBW8 sourceImage,
ERegion region,
EROIBW8 destinationImage
)
static void ConvolSobelY(
EROIBW8 sourceImage,
ERegion region
)
static void ConvolSobelY(
EROIBW16 sourceImage,
ERegion region,
EROIBW16 destinationImage
)
static void ConvolSobelY(
EROIBW16 sourceImage,
ERegion region
)
static void ConvolSobelY(
EROIC24 sourceImage,
ERegion region,
EROIC24 destinationImage
)
static void ConvolSobelY(
EROIC24 sourceImage,
ERegion region
)
static void ConvolSobelY(
EROIBW8 sourceImage,
ERegion region,
EFrame frame,
EROIBW8 destinationImage
)
static void ConvolSobelY(
EROIBW8 sourceImage,
ERegion region,
EFrame frame
)
static void ConvolSobelY(
EROIBW16 sourceImage,
ERegion region,
EFrame frame,
EROIBW16 destinationImage
)
static void ConvolSobelY(
EROIBW16 sourceImage,
ERegion region,
EFrame frame
)
static void ConvolSobelY(
EROIC24 sourceImage,
ERegion region,
EFrame frame,
EROIC24 destinationImage
)
static void ConvolSobelY(
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:
| -1 | -2 | -1 |
| 0 | 0 | 0 |
| 1 | 2 | 1 |
EasyImage.ConvolSobelY
Derives an image along Y using a Sobel kernel and stores the absolute value (magnitude) of the result in the destination image.
Module: open_evision
[Python]
@staticmethod
ConvolSobelY(
sourceImage: EROIBW8
destinationImage: EROIBW8
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW8
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW16
destinationImage: EROIBW16
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW16
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIC24
destinationImage: EROIC24
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIC24
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW8
region: ERegion
destinationImage: EROIBW8
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW8
region: ERegion
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW16
region: ERegion
destinationImage: EROIBW16
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW16
region: ERegion
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIC24
region: ERegion
destinationImage: EROIC24
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIC24
region: ERegion
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW8
region: ERegion
frame: EFrame
destinationImage: EROIBW8
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW8
region: ERegion
frame: EFrame
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW16
region: ERegion
frame: EFrame
destinationImage: EROIBW16
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIBW16
region: ERegion
frame: EFrame
) -> None
@staticmethod
ConvolSobelY(
sourceImage: EROIC24
region: ERegion
frame: EFrame
destinationImage: EROIC24
) -> None
@staticmethod
ConvolSobelY(
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:
| -1 | -2 | -1 |
| 0 | 0 | 0 |
| 1 | 2 | 1 |