Create a TFORM structure for SPATIAL information given by dicomreadvolume
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have collected a number of MRI volumes in different orientations cor,sag,tra and also oblique volume. All image are from the same examination and I now like to compare them. Some of the image volumes are on homogenous spherical phantoms so there is not possible to do image based registration to get the TFORM.
Can i calculate a 3D TFORM structure from the SPATIAL information given by dicmreadvolume?
I.e. what I like to do is (for simplicity assume that the volumes have the same FOV and resolution)
[SagVolume, sagSPATIAL, sagDIM] = dicomreadvolume(sagVolumeDir);
[ObliqueVolume, obliqueSPATIAL, obliqueDIM] = dicomreadvolume(obliqueVolumeDir);
tformSag2standardSpace = ???? something dependent on sagSPATIAL.
tformOblique2standardSpce = ???? something dependent on obliqueSPATIAL
SagVolumeInStandradSpcae = affine3D( SagVolume, tformSag2standardSpace);
ObliqueVolumeInStandradSpcae = affine3D( ObliqueVolume, tformOblique2standardSpace);
DiffVolumes = SagVolumeInStandradSpcae - ObliqueVolumeInStandradSpcae;
0 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre Neuroimaging en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!