Skip to content

Commit

Permalink
switch dimension
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Jan 7, 2024
1 parent 4ac0738 commit 94d0c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NRRD/FileWriter.vb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Public Module FileWriter
Call file.WriteString("# This data is a rawdata file generated from the R# language DICOM image library.")
Call file.WriteString($"type: float")
Call file.WriteString($"dimension: 3")
Call file.WriteString($"sizes: {dims.Width} {dims.Height} {len}")
Call file.WriteString($"sizes: {dims.Height} {dims.Width} {len}")
Call file.WriteString($"encoding: raw")
Call file.WriteString($"endian: little")
Call file.WriteString($"space directions: (1,0,0) (0,1,0) (0,0,1)")
Expand Down

0 comments on commit 94d0c77

Please sign in to comment.