浏览代码

readme: added ashs.IntracranialVolumeFile

Fabian Peter Hammerle 4 年之前
父节点
当前提交
d1b18ef89b
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      README.md

+ 11 - 0
README.md

@@ -72,6 +72,17 @@ for volume_file in ashs.HippocampalSubfieldsVolumeFile.find('/my/ashs/subjects')
     print(volume_file.read_volumes_dataframe())
 ```
 
+#### Intracranial Volume
+
+```python
+from freesurfer_volume_reader import ashs
+
+for volume_file in ashs.IntracranialVolumeFile.find('/my/ashs/subjects'):
+    print(volume_file.subject)
+    print(volume_file.read_volume_mm3())
+    print(volume_file.read_volume_series())
+```
+
 ### Freesurfer & ASHS
 
 ```sh