as.mask | R Documentation |
Convert to a LogicalNeuroVol
as.mask(x, indices)
x |
the object to binarize |
indices |
the indices to set to TRUE |
A LogicalNeuroVol
object with TRUE
values at the specified indices
.
# Create a simple 3D volume with random values
space <- NeuroSpace(c(10,10,10), spacing=c(1,1,1))
vol <- NeuroVol(array(runif(1000), c(10,10,10)), space)
# Create a mask by thresholding (values > 0.5 become TRUE)
mask1 <- as.mask(vol > 0.5)
# Create a mask by specifying indices
indices <- which(vol > 0.8) # get indices of high values
mask2 <- as.mask(vol, indices)
# Both masks are LogicalNeuroVol objects
identical(class(mask1), class(mask2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.