hist.antsImage: Histogram of Values in an Image

View source: R/hist.antsImage.R

hist.antsImageR Documentation

Histogram of Values in an Image

Description

Computes and displays a histogram of the values of an image with the option for a mask.

Usage

## S3 method for class 'antsImage'
hist(x, ..., mask)

Arguments

x

Object of class antsImage

...

Arguments passed to hist.default

mask

object to subset the image. If missing, then all values of the image are plotted.

Value

Output of hist

Examples

img <- makeImage(c(10, 10), rnorm(100))
mask <- img > 0
hist(img)
hist(img, mask = mask)

stnava/ANTsR documentation built on April 16, 2024, 12:17 a.m.