Operators |
gray_erosion_shape — Determine the minimum gray value within a selected mask.
gray_erosion_shape(Image : ImageMin : MaskHeight, MaskWidth, MaskShape : )
gray_erosion_shape calculates the minimum gray value of the input image Image within a mask of shape MaskShape, vertical size MaskHeight and horizontal size MaskWidth for each image point. The resulting image is returned in ImageMin.
If the parameters MaskHeight or MaskWidth are of the type integer and are even, they are changed to the next larger odd value. In contrast, if at least one of the two parameters is of the type float, the input image Image is transformed with both the next larger and the next smaller odd mask size, and the output image ImageMin is interpolated from the two intermediate images. Therefore, note that gray_erosion_shape returns different results for mask sizes of, e.g., 4 and 4.0!
In case of the values 'rhombus' and 'octagon' for the MaskShape control parameter, MaskHeight and MaskWidth must be equal. The parameter value 'octagon' for MaskShape denotes an equilateral octagonal mask which is a suitable approximation for a circular structure. At the border of the image the gray values are mirrored.
Note that gray_erosion_shape requires considerably more time for mask sizes of type float than for mask sizes of type integer. This is especially true for rectangular masks with different width and height!
gray_erosion_shape can be executed on OpenCL devices. In case of mask sizes of type float the result can vary slightly from the CPU as the interpolation is calculated in single precision on the OpenCL device.
Note that filter operators may return unexpected results if an image with a reduced domain is used as input. Please refer to the chapter Filters.
Image for which the minimum gray values are to be calculated.
Image containing the minimum gray values.
Height of the filter mask.
Default value: 11
Suggested values: 3, 5, 7, 9, 11, 13, 15
Typical range of values: 1.0 ≤ MaskHeight
Width of the filter mask.
Default value: 11
Suggested values: 3, 5, 7, 9, 11, 13, 15
Typical range of values: 1.0 ≤ MaskWidth
Shape of the mask.
Default value: 'octagon'
List of values: 'octagon' , 'rectangle' , 'rhombus'
gray_erosion_shape returns 2 (H_MSG_TRUE) if all parameters are correct.
gray_erosion, gray_erosion_rect
gray_opening_shape, gray_closing_shape, gray_skeleton
Foundation
Operators |