make_brush {pliman} | R Documentation |
Makes a brush
Description
Generates brushes of various sizes and shapes that can be used as structuring
elements. See EBImage::makeBrush()
.
Usage
make_brush(size, shape = "disc", ...)
Arguments
size |
A numeric containing the size of the brush in pixels. This should be an odd number; even numbers are rounded to the next odd one. |
shape |
A character vector indicating the shape of the brush. Can be
|
... |
Further arguments passed on to |
Value
A 2D matrix of 0s and 1s containing the desired brush.
Examples
make_brush(size = 51) |> image()
make_brush(size = 51, shape = "diamond") |> image()
[Package pliman version 2.1.0 Index]