Niftiinfo do not keep negative values
9 ビュー (過去 30 日間)
古いコメントを表示
Sebastian Dahl Sandbu
2023 年 6 月 16 日
コメント済み: Walter Roberson
2023 年 6 月 17 日
When I'm importing nifti files using niftiinfo and niftiread, only the positive values from the metadata remains. The original files contain both positive and negative values. I have read the documentation and tried to change the cal_max and cal_min field, but this doesn't solve it.
Any ideas how to fix this? Are there any other functions to load niftifiles in matlab?
Thanks!
7 件のコメント
Walter Roberson
2023 年 6 月 17 日
cal_max and cal_min are used for mapping for display colors
Data scaling is different controls; see for example https://nifti.nimh.nih.gov/nifti-1/documentation/nifti1fields/nifti1fields_pages/scl_slopeinter.html
採用された回答
Walter Roberson
2023 年 6 月 17 日
I stepped through the code that reads the image. The data as it is stored in the file has no negative values.
The only items that the code uses from the headers include:
- offset from beginning of file to data
- byte order
- image size
- image data type
The code does not perform any data scaling or any min() or max() or anything like that: the values you get from the reading function are what is stored in the file.
You yourself should probably be applying the MultiplicativeScaling: 2 and AdditiveOffset: -4096 -- that would get you values in the range -4096 to +4094
2 件のコメント
Walter Roberson
2023 年 6 月 17 日
ITK-SNAP and fsleyes are probably applying the scaling and offset; MATLAB is just returning the raw data.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Biomedical Imaging についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!