invert_xfm: Convert a Transformation

Description Usage Arguments Value Examples

View source: R/convert_xfm.R

Description

Convert a Transformation

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
invert_xfm(inmat, omat = tempfile(fileext = ".mat"), verbose = TRUE)

concat_xfm(inmat, inmat2, omat = tempfile(fileext = ".mat"), verbose = TRUE)

fixscaleskew_xfm(
  inmat,
  inmat2,
  omat = tempfile(fileext = ".mat"),
  verbose = TRUE
)

Arguments

inmat

input matrix transformation

omat

output matrix transformation

verbose

print diagnostic messages

inmat2

second matrix filename to be concatenated or fixscaleskew to first

Value

A filename of the output matrix file

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
if (have_fsl()) {
img = mni_fname()
mat = fslreorient2std_mat(img)
inverted = invert_xfm(mat)
readLines(inverted)
catted = concat_xfm(mat, mat)
readLines(catted)
fixed = fixscaleskew_xfm(mat, mat)
readLines(fixed)

}

neuroconductor-devel-releases/fslr documentation built on May 6, 2020, 4:22 p.m.