Skip to contents

This method converts a ClusteredNeuroVol into an equivalent DenseNeuroVol object.

Arguments

from

A ClusteredNeuroVol object to be converted

Value

A DenseNeuroVol object

Details

Convert a ClusteredNeuroVol Object to a DenseNeuroVol Object

Examples

if (FALSE) { # \dontrun{
# Create a clustered volume
mask <- read_vol(system.file("extdata", "global_mask_v4.nii", package="neuroim2"))
clusters <- rep(1:5, each=sum(mask)/5)
cvol <- ClusteredNeuroVol(mask, clusters)

# Convert to DenseNeuroVol
dvol <- as(cvol, "DenseNeuroVol")
} # }