Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use integers #21

Merged
merged 1 commit into from
Apr 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions src/colormap/colors.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def hex2dec(data):
"""convert hexadecimal string (data) into a float in the [0-65536] inclusive range"""
if data[0] == "#":
data.replace("#", "")
return int(data, 16) / 255.0
return int(data, 16) / 255


def rgb2yuv(r, g, b):
Expand All @@ -310,8 +310,8 @@ def rgb2yuv(r, g, b):
# v = int(0.615 * r + -0.51499 * g + -0.10001 * b)

y = 0.299 * r + 0.587 * g + 0.114 * b
u = -32591.0 / 221500.0 * r + -63983.0 / 221500.0 * g + 0.436 * b
v = 0.615 * r + -72201.0 / 140200 * g + -7011 / 70100.0 * b
u = -32591 / 221500 * r + -63983 / 221500 * g + 0.436 * b
v = 0.615 * r + -72201 / 140200 * g + -7011 / 70100 * b
return (y, u, v)


Expand All @@ -326,7 +326,7 @@ def yuv2rgb(y, u, v):
check_range(y, 0, 1)
check_range(u, 0, 1)
check_range(v, 0, 1)
A, B, C, D = 701.0 / 615.0, 25251.0 / 63983.0, 209599.0 / 361005.0, 443.0 / 218.0
A, B, C, D = 701 / 615, 25251 / 63983, 209599 / 361005, 443 / 218
r = y + A * v
g = y - B * u - C * v
b = y + D * u
Expand All @@ -346,8 +346,8 @@ def rgb2yuv_int(r, g, b):
check_range(b, 0, 255)

y = int(0.299 * r + 0.587 * g + 0.114 * b)
u = int(-32591.0 / 221500.0 * r + -63983.0 / 221500.0 * g + 0.436 * b)
v = int(0.615 * r + -72201.0 / 140200 * g + -7011 / 70100.0 * b)
u = int(-32591 / 221500 * r + -63983 / 221500 * g + 0.436 * b)
v = int(0.615 * r + -72201 / 140200 * g + -7011 / 70100 * b)

return (y, u, v)

Expand All @@ -372,17 +372,17 @@ def yuv2rgb_int(y, u, v):
def _denormalise(r, g, b, mode="rgb"):
check_param_in_list(mode, ["rgb", "hls", "hsv"])
if mode == "rgb":
return r * 255.0, g * 255.0, b * 255.0
return r * 255, g * 255, b * 255
elif mode in ["hls", "hsv"]:
return r * 360.0, g * 100.0, b * 100.0
return r * 360, g * 100, b * 100


def _normalise(r, g, b, mode="rgb"):
check_param_in_list(mode, ["rgb", "hls", "hsv"])
if mode == "rgb":
return r / 255.0, g / 255.0, b / 255.0
return r / 255, g / 255, b / 255
elif mode in ["hls", "hsv"]:
return r / 360.0, g / 100.0, b / 100.0
return r / 360, g / 100, b / 100


def to_intensity(n):
Expand All @@ -392,7 +392,7 @@ def to_intensity(n):
:return: value between 0 and 255; round(n*127.5+127.5)
"""
check_range(n, 0, 1)
return int(round(n * 127.5 + 127.5))
return round(n * 127.5 + 127.5)


class HEX(object):
Expand Down Expand Up @@ -884,9 +884,9 @@ def plot_rgb_from_hex_list(self, cols):
"""
import pylab

red = [hex2rgb(x)[0] / 255.0 for x in cols]
blue = [hex2rgb(x)[2] / 255.0 for x in cols]
green = [hex2rgb(x)[1] / 255.0 for x in cols]
red = [hex2rgb(x)[0] / 255 for x in cols]
blue = [hex2rgb(x)[2] / 255 for x in cols]
green = [hex2rgb(x)[1] / 255 for x in cols]
x = pylab.linspace(0, 1, len(cols))
pylab.clf()
pylab.plot(x, red, "ro-", alpha=0.5)
Expand Down Expand Up @@ -1080,7 +1080,7 @@ def plot_colormap(self, cmap_list=None):

nrows = len(cmap_list)

gradient = [x / 255.0 for x in range(0, 256)]
gradient = [x / 255 for x in range(0, 256)]
gradient = [gradient, gradient]
# np.vstack((gradient, gradient))

Expand All @@ -1091,7 +1091,7 @@ def plot_colormap(self, cmap_list=None):
ax.imshow(gradient, aspect="auto", cmap=self.cmap(name))
pos = list(ax.get_position().bounds)
x_text = pos[2] + 0.08
y_text = pos[1] + pos[3] / 2.0
y_text = pos[1] + pos[3] / 2
fig.text(x_text, y_text, name, va="center", ha="left", fontsize=10)

# Turn off *all* ticks & spines, not just the ones with colormaps.
Expand Down
Loading