📜  fsl convert_xfm - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:37.791000             🧑  作者: Mango

代码示例1
#!/bin/sh

# convert_xfm creates new flirt registration matrix files 
# from existing ones.

# Concatenate 2 flirt registration matrices to make a 3rd:
convert_xfm -omat outmat_AtoC.mat -concat mat_BtoC.mat mat_AtoB.mat
#----------------------------------------
# Create the output (AtoB.mat) as the inverse 
# of an existing matrix (BtoA.mat)
convert_xfm -omat AtoB.mat -inverse BtoA.mat