We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47fb909 commit c943115Copy full SHA for c943115
content/tutorial-x-ray-image-processing.md
@@ -119,7 +119,7 @@ import imageio
119
120
DIR = "tutorial-x-ray-image-processing"
121
122
-xray_image = imageio.imread(os.path.join(DIR, "00000011_001.png"))
+xray_image = imageio.v2.imread(os.path.join(DIR, "00000011_001.png"))
123
```
124
125
**2.** Check that its shape is 1024x1024 pixels and that the array is made up of
@@ -157,7 +157,7 @@ import numpy as np
157
num_imgs = 9
158
159
combined_xray_images_1 = np.array(
160
- [imageio.imread(os.path.join(DIR, f"00000011_00{i}.png")) for i in range(num_imgs)]
+ [imageio.v2.imread(os.path.join(DIR, f"00000011_00{i}.png")) for i in range(num_imgs)]
161
)
162
163
0 commit comments