Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mcencini committed Jan 24, 2024
1 parent c5f3d91 commit 2a0511a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/core/io.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ DeepMR also contains generic I/O routines that can be used to write custom I/O f

```python
# Custom reading routines
data, head = read_custom_rawdata(filepath, *args, **kwargs) # k-space
image, head = read_custom_image(filepath, *args, **kwargs) # image
data, head = read_custom_rawdata(filepath, *args, head=None, **kwargs) # k-space
image, head = read_custom_image(filepath, *args, head=None, **kwargs) # image
head = read_custom_acqheader(filepath, *args, **kwargs) # header

# Custom writing routines
write_custom_rawdata(filepath, data, *args, head=None **kwargs) # k-space
write_custom_image(filepath, image, *args, head=None, **kwargs) # image
write_custom_rawdata(filepath, data, *args, **kwargs) # k-space
write_custom_image(filepath, image, *args, **kwargs) # image
write_custom_acqheader(filepath, head, *args, **kwargs) # header
```

Expand Down

0 comments on commit 2a0511a

Please sign in to comment.