I have a dicom series folder with MR data.
With pydicom or simpleITK i can read this data, and now i want to do the following:
1) MPR reformatting. I want to create the other 2 primary projections for the data, i.e., if my dataset was taken in the axial projection, then i want to have sagittal and coronal and so on.
2) I have some points that are stored in the world coordinates. I want to recompute the world coordinates to my image coordinates in the specific plane.
I know how to do it using a medical imaging software, for instance, MeVisLab or Slicer, but how to do it in python to keep the processing in one language/ without switching between software packages? Are there any libraries with examples?
Thank you.