Is there a way to use the transform.h5 file from a script to apply the same transform on a batch of volumes? The easiest way would be directly from bash script like:
$ for i in $list;
do Slicer resample \
--transform transform${i}.h5 \
--fixed source${i}.nrrd \
--moving target${i}.nrrd;
done;
A python call would also make it, but I can not find documentation about that…