Learn R Programming

pliman (version 2.1.0)

make_brush: 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", ...)

Value

A 2D matrix of 0s and 1s containing the desired brush.

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 "box", "disc", "diamond", "Gaussian" or "line" Defaults to "disc".

...

Further arguments passed on to EBImage::makeBrush().

Examples

Run this code

make_brush(size = 51) |> image()
make_brush(size = 51, shape = "diamond") |> image()

Run the code above in your browser using DataLab