Skip to contents

Displays a formatted summary of a NeuroSlice object's properties using color-coded output for improved readability.

Usage

# S4 method for class 'IndexLookupVol'
show(object)

# S4 method for class 'NeuroSlice'
show(object)

# S4 method for class 'NeuroSpace'
show(object)

# S4 method for class 'DenseNeuroVec'
show(object)

# S4 method for class 'NeuroVecSeq'
show(object)

# S4 method for class 'NeuroVecSeq'
show(object)

# S4 method for class 'ROICoords'
show(object)

Arguments

object

A NeuroSlice object

Value

Invisibly returns NULL after printing the object summary.

Details

Display NeuroSlice Information

Examples

slice <- NeuroSlice(matrix(1:100, 10, 10), NeuroSpace(c(10, 10)))
show(slice)
#> 
#> === NeuroSlice Object === 
#> 
#> * Basic Information 
#>   Type: NeuroSlice
#>   Dimensions: 10 x 10 (5.9 Kb)
#> 
#> * Data Properties
#>   Value Range: [1.00, 100.00]
#> 
#> * Spatial Properties
#>   Spacing: 1.00 x 1.00
#>   Origin:  0.00 x 0.00
#>   Axes:    Left-to-Right x Posterior-to-Anterior
#> 
#> 28