-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolors.py
More file actions
58 lines (40 loc) · 1.4 KB
/
colors.py
File metadata and controls
58 lines (40 loc) · 1.4 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python3
""" This module computes and shows each color channel (red/green/blue)
using the matploblib and pillow.
"""
import matplotlib.pyplot as plt
import numpy
def show_rgb_channel(img):
""" Shows a grid of eight images for each bit in the pixels """
figure, subplots = plt.subplots(1, 3)
figure.suptitle("Color Channels")
channels = {c: numpy.zeros(img.shape, dtype=int) for c in ["red", "green", "blue"]}
for index, (name, channel) in enumerate(channels.items()):
channel[:, :, index] = img[:, :, index]
subplots[index].imshow(channel)
subplots[index].set_title(name)
figure.subplots_adjust(hspace=0.5)
plt.show()
def read_image(filename):
""" Reads an image from a file into an array.
The matplotlib function (https://matplotlib.org/3.1.1/_modules/matplotlib/image.html#imread)
is not used here since floats for pixel values (used when opening a PNG file) are annoying.
"""
from PIL import Image
from matplotlib.image import pil_to_array
with Image.open(filename) as image:
return pil_to_array(image)
def main():
""" Usage:
$ ./this.py <filename>
"""
from sys import argv
try:
filename = argv[1]
except IndexError:
print("Usage:", argv[0], "<filename>")
return
img = read_image(filename)
show_rgb_channel(img)
if __name__ == "__main__":
main()