Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132964 views
License: OTHER
1
2
# Images as arrays
3
4
Let's check the version of `scikit-image`:
5
6
7
8
```python
9
import skimage
10
skimage.__version__
11
```
12
13
14
15
16
```output
17
'0.12.3'
18
```
19
20
21
22
## Exercises
23
24
0. Describe exercise one here. The description may be longer than 80
25
characters, and flow over to the next line.
26
27
```
28
def foo():
29
return 1
30
31
print(foo())
32
```
33
34
You may want to include code snippets like the above that are not
35
executed.
36
37
0. Here follows another exercise.
38
39