Skip to content

Commit 0cab4b6

Browse files
authored
Merge pull request #210 from ironArray/updateDocs
Fix images not rendering
2 parents 72db5cc + 593f497 commit 0cab4b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/tutorials/hdf5.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Caterva2 offers native support for working with HDF5 files. See [here](https://i
55
## What is an HDF5 file?
66
HDF stands for Hierarchical Data Format. [HDF5](https://www.hdfgroup.org/solutions/hdf5/) is a file format and set of tools for managing complex data. It is designed to store and organize large amounts of heterogeneous data, enabling quick access and efficient storage, using compression for example. HDF5 files are made up of a root (`/`) which may then contain the file contents. These contents are organised using the two main structures of HDF5 files - groups (which are like subdirectories) and datasets. Both datasets and groups possess metadata, which may include special, bespoke information about the object in the form of attributes (`attrs`).
77

8-
```{figure}images/hdf5-file.webp
8+
```{figure} images/hdf5-file.webp
99
---
1010
class: with-border
1111
@@ -65,7 +65,7 @@ plt.imshow(example_image / 65535,
6565
figure=fig, cmap=cmap, vmax=1, vmin=0)
6666
```
6767

68-
```{figure}images/hdf5-output1.webp
68+
```{figure} images/hdf5-output1.webp
6969
---
7070
class: with-border
7171
@@ -88,7 +88,7 @@ plt.imshow(example_image, figure=fig,
8888
```
8989
The result is an image with the desired diffraction pattern visible, as shown below:
9090

91-
```{figure}images/hdf5-output2.webp
91+
```{figure} images/hdf5-output2.webp
9292
---
9393
class: with-border
9494
@@ -99,7 +99,7 @@ Second visualisation
9999
```
100100
We can also go to the web client and directly visualize the lazy expression we have just generated and saved via the Tomography tab for the saved expression:
101101

102-
```{figure}images/hdf5-tomo.webp
102+
```{figure} images/hdf5-tomo.webp
103103
---
104104
class: with-border
105105

0 commit comments

Comments
 (0)