Skip to contents

Load transformation matrix from a tkregister dat file.

Usage

read.fs.transform.dat(filepath)

Arguments

filepath

character string, the full path to the transform file.

Value

4x4 numerical matrix, the transformation matrix

Examples

tf_file <- system.file("extdata", "register.dat",
  package = "freesurferformats",
  mustWork = TRUE
)
transform <- read.fs.transform.dat(tf_file)
transform$matrix
#>              [,1]         [,2]        [,3]         [,4]
#> [1,]  0.999869585  0.006901878  0.01459838   0.08490597
#> [2,] -0.014461628 -0.019486522  0.99970520 -17.40991402
#> [3,]  0.007197575 -0.999786258 -0.01938400  -7.02687693
#> [4,]  0.000000000  0.000000000  0.00000000   1.00000000