-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcenterize.py
executable file
·44 lines (28 loc) · 901 Bytes
/
centerize.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
import matplotlib.pyplot as plt
import imgviz
def centerize():
data = imgviz.data.arc2017()
rgb = data["rgb"]
H, W = rgb.shape[:2]
centerized1 = imgviz.centerize(rgb, shape=(H, H))
rgb_T = rgb.transpose(1, 0, 2)
centerized2 = imgviz.centerize(rgb_T, shape=(H, H))
# -------------------------------------------------------------------------
plt.figure(dpi=200)
plt.subplot(131)
plt.title("original")
plt.axis("off")
plt.imshow(rgb)
plt.subplot(132)
plt.title("centerized1:\n{}".format(centerized1.shape))
plt.imshow(centerized1)
plt.axis("off")
plt.subplot(133)
plt.title("centerized2:\n{}".format(centerized2.shape))
plt.imshow(centerized2)
plt.axis("off")
return imgviz.io.pyplot_to_numpy()
if __name__ == "__main__":
from base import run_example
run_example(centerize)