christianpayer / MedicalDataAugmentationTool-VerSe

GNU General Public License v3.0
175 stars 81 forks source link

Not an issue, just a comment: RAI vs LPS confusion #29

Open idhamari opened 9 months ago

idhamari commented 9 months ago

Based on these Slicer Wiki and ITK wiki I think the direction matrix used in the code can also be called LPS orientation, not just RAI, it is matter of using "to" or "from" concepts to represents the letter:

     # LPS: Right to (L)eft, Antiror to (P)ostiror, Inferor to (S)superior
     # RAI: (R)ight to Left, (A)ntiror to Postiror, (I)nferor to Superior
      m = itk.GetMatrixFromArray(np.array([[1, 0, 0], [0, 1, 0], [0, 0, 1]], np.float64))

I think since all output images have the same orientation probably the naming does not matter.