Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add section about hdf5 in the headless mode doc. #142

Merged
merged 1 commit into from
Oct 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions documentation/basics/headless.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ CPU and RAM resources can be controlled with environment variables or a config f

[controlling resources]: {{site.baseurl}}/documentation/basics/installation#controlling-cpu-and-ram-resources

### Using hdf5 for memory efficiency

We recommend to use hdf5 for input and output over, for example, TIF stacks. Indeed, TIF stacks cannot be written/read block-wise, hence the whole data has to be loaded and kept in memory. This can lead to excessive memory usage and slowness.

In order to convert your TIF slices into hdf5 datasets, you can check the dedicated [Fiji Plugin][fiji_plugin].

[fiji_plugin]: {{site.baseurl}}/documentation/fiji_export/plugin


### Using stack input

If you are dealing with 3D data in the form of an image sequence (e.g. a tiff stack),
Expand Down