SCOUT/LOCALIZER LINES ON DICOM IMAGES
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
In magnetic resonance,how can I create scout lines in matlab?. Can someone help me? Thenk you
2 comentarios
Sean de Wolski
el 14 de Jun. de 2011
Could you be more specific please? What do you have and expect?
Respuesta aceptada
Bob Hamans
el 15 de Jun. de 2011
I think I do understand what you are trying to achieve and can even see the point in why you would want to do that. :-) First have a look at the dicominfo function to retrieve some relevant parameters:
dinfo=dicominfo('myfile.dcm');
dinfo.ImagePositionPatient; % Left bottom corner
dinfo.PixelSpacing(1) * dinfo.Columns; % 1st dimension, etc
dinfo.ImageOrientationPatient; % Orientation vector
Using the above values from both your scout and sagital images you can calculate the intersection of the two. This is actually the complicated part I cannot cook up in a minute.
I also suggest to have a real good look at the file exchange because I would expect something like what you are looking for to be present already.
2 comentarios
Bob Hamans
el 6 de Jul. de 2011
A new submission in the File Exchange might be of interest to you: http://www.mathworks.com/matlabcentral/fileexchange/32063-plotting-planes-and-their-intersection
Más respuestas (0)
Ver también
Categorías
Más información sobre DICOM Format 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!