We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03a58bf commit 2afc462Copy full SHA for 2afc462
doc/MUG.md
@@ -758,6 +758,11 @@ the second one the size of each tile
758
```
759
od -t u8 --endian big <input_file>
760
761
+To check that the MRF data file does not have any slack, is to verify that the sum of the tile sizes equals the size
762
+of the data file. This can be done using:
763
+```
764
+od -td8 --endian=big TCI.idx |cut -c 40- | awk '{ sum += $1} END {print sum}'
765
766
767
# APPENDIX C, Create Options
768
0 commit comments