Browse Source

readme: added ashs.IntracranialVolumeFile

Fabian Peter Hammerle 4 years ago
parent
commit
d1b18ef89b
1 changed files with 11 additions and 0 deletions
  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