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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
|
"""
This module contains classes to represent various color spaces.
"""
import logging
import math
import numpy
from colormath import color_constants
from colormath import density
from colormath.chromatic_adaptation import apply_chromatic_adaptation_on_color
from colormath.color_exceptions import InvalidObserverError, InvalidIlluminantError
logger = logging.getLogger(__name__)
class ColorBase(object):
"""
A base class holding some common methods and values.
"""
# Attribute names containing color data on the sub-class. For example,
# sRGBColor would be ['rgb_r', 'rgb_g', 'rgb_b']
VALUES = []
# If this object as converted such that its values passed through an
# RGB colorspace, this is set to the class for said RGB color space.
# Allows reversing conversions automatically and accurately.
_through_rgb_type = None
def get_value_tuple(self):
"""
Returns a tuple of the color's values (in order). For example,
an LabColor object will return (lab_l, lab_a, lab_b), where each
member of the tuple is the float value for said variable.
"""
retval = tuple()
for val in self.VALUES:
retval += (getattr(self, val),)
return retval
def __str__(self):
"""
String representation of the color.
"""
retval = self.__class__.__name__ + ' ('
for val in self.VALUES:
value = getattr(self, val, None)
if value is not None:
retval += '%s:%.4f ' % (val, getattr(self, val))
return retval.strip() + ')'
def __repr__(self):
"""
String representation of the object.
"""
retval = self.__class__.__name__ + '('
attributes = [(attr, getattr(self, attr)) for attr in self.VALUES]
values = [x + "=" + repr(y) for x, y in attributes]
retval += ','.join(values)
return retval + ')'
class IlluminantMixin(object):
"""
Color spaces that have a notion of an illuminant should inherit this.
"""
# noinspection PyAttributeOutsideInit
def set_observer(self, observer):
"""
Validates and sets the color's observer angle.
.. note:: This only changes the observer angle value. It does no conversion
of the color's coordinates.
:param str observer: One of '2' or '10'.
"""
observer = str(observer)
if observer not in color_constants.OBSERVERS:
raise InvalidObserverError(self)
self.observer = observer
# noinspection PyAttributeOutsideInit
def set_illuminant(self, illuminant):
"""
Validates and sets the color's illuminant.
.. note:: This only changes the illuminant. It does no conversion
of the color's coordinates. For this, you'll want to refer to
:py:meth:`XYZColor.apply_adaptation <colormath.color_objects.XYZColor.apply_adaptation>`.
.. tip:: Call this after setting your observer.
:param str illuminant: One of the various illuminants.
"""
illuminant = illuminant.lower()
if illuminant not in color_constants.ILLUMINANTS[self.observer]:
raise InvalidIlluminantError(illuminant)
self.illuminant = illuminant
def get_illuminant_xyz(self, observer=None, illuminant=None):
"""
:param str observer: Get the XYZ values for another observer angle. Must
be either '2' or '10'.
:param str illuminant: Get the XYZ values for another illuminant.
:returns: the color's illuminant's XYZ values.
"""
try:
if observer is None:
observer = self.observer
illums_observer = color_constants.ILLUMINANTS[observer]
except KeyError:
raise InvalidObserverError(self)
try:
if illuminant is None:
illuminant = self.illuminant
illum_xyz = illums_observer[illuminant]
except (KeyError, AttributeError):
raise InvalidIlluminantError(illuminant)
return {'X': illum_xyz[0], 'Y': illum_xyz[1], 'Z': illum_xyz[2]}
class SpectralColor(IlluminantMixin, ColorBase):
"""
A SpectralColor represents a spectral power distribution, as read by
a spectrophotometer. Our current implementation has wavelength intervals
of 10nm, starting at 340nm and ending at 830nm.
Spectral colors are the lowest level, most "raw" measurement of color.
You may convert spectral colors to any other color space, but you can't
convert any other color space back to spectral.
See `Spectral power distribution <http://en.wikipedia.org/wiki/Spectral_power_distribution>`_
on Wikipedia for some higher level details on how these work.
"""
VALUES = [
'spec_340nm', 'spec_350nm', 'spec_360nm', 'spec_370nm',
'spec_380nm', 'spec_390nm', 'spec_400nm', 'spec_410nm',
'spec_420nm', 'spec_430nm', 'spec_440nm', 'spec_450nm',
'spec_460nm', 'spec_470nm', 'spec_480nm', 'spec_490nm',
'spec_500nm', 'spec_510nm', 'spec_520nm', 'spec_530nm',
'spec_540nm', 'spec_550nm', 'spec_560nm', 'spec_570nm',
'spec_580nm', 'spec_590nm', 'spec_600nm', 'spec_610nm',
'spec_620nm', 'spec_630nm', 'spec_640nm', 'spec_650nm',
'spec_660nm', 'spec_670nm', 'spec_680nm', 'spec_690nm',
'spec_700nm', 'spec_710nm', 'spec_720nm', 'spec_730nm',
'spec_740nm', 'spec_750nm', 'spec_760nm', 'spec_770nm',
'spec_780nm', 'spec_790nm', 'spec_800nm', 'spec_810nm',
'spec_820nm', 'spec_830nm'
]
def __init__(self,
spec_340nm=0.0, spec_350nm=0.0, spec_360nm=0.0, spec_370nm=0.0,
spec_380nm=0.0, spec_390nm=0.0, spec_400nm=0.0, spec_410nm=0.0,
spec_420nm=0.0, spec_430nm=0.0, spec_440nm=0.0, spec_450nm=0.0,
spec_460nm=0.0, spec_470nm=0.0, spec_480nm=0.0, spec_490nm=0.0,
spec_500nm=0.0, spec_510nm=0.0, spec_520nm=0.0, spec_530nm=0.0,
spec_540nm=0.0, spec_550nm=0.0, spec_560nm=0.0, spec_570nm=0.0,
spec_580nm=0.0, spec_590nm=0.0, spec_600nm=0.0, spec_610nm=0.0,
spec_620nm=0.0, spec_630nm=0.0, spec_640nm=0.0, spec_650nm=0.0,
spec_660nm=0.0, spec_670nm=0.0, spec_680nm=0.0, spec_690nm=0.0,
spec_700nm=0.0, spec_710nm=0.0, spec_720nm=0.0, spec_730nm=0.0,
spec_740nm=0.0, spec_750nm=0.0, spec_760nm=0.0, spec_770nm=0.0,
spec_780nm=0.0, spec_790nm=0.0, spec_800nm=0.0, spec_810nm=0.0,
spec_820nm=0.0, spec_830nm=0.0, observer='2', illuminant='d50'):
"""
:keyword str observer: Observer angle. Either ``'2'`` or ``'10'`` degrees.
:keyword str illuminant: See :doc:`illuminants` for valid values.
"""
super(SpectralColor, self).__init__()
# Spectral fields
self.spec_340nm = float(spec_340nm)
self.spec_350nm = float(spec_350nm)
self.spec_360nm = float(spec_360nm)
self.spec_370nm = float(spec_370nm)
# begin Blue wavelengths
self.spec_380nm = float(spec_380nm)
self.spec_390nm = float(spec_390nm)
self.spec_400nm = float(spec_400nm)
self.spec_410nm = float(spec_410nm)
self.spec_420nm = float(spec_420nm)
self.spec_430nm = float(spec_430nm)
self.spec_440nm = float(spec_440nm)
self.spec_450nm = float(spec_450nm)
self.spec_460nm = float(spec_460nm)
self.spec_470nm = float(spec_470nm)
self.spec_480nm = float(spec_480nm)
self.spec_490nm = float(spec_490nm)
# end Blue wavelengths
# start Green wavelengths
self.spec_500nm = float(spec_500nm)
self.spec_510nm = float(spec_510nm)
self.spec_520nm = float(spec_520nm)
self.spec_530nm = float(spec_530nm)
self.spec_540nm = float(spec_540nm)
self.spec_550nm = float(spec_550nm)
self.spec_560nm = float(spec_560nm)
self.spec_570nm = float(spec_570nm)
self.spec_580nm = float(spec_580nm)
self.spec_590nm = float(spec_590nm)
self.spec_600nm = float(spec_600nm)
self.spec_610nm = float(spec_610nm)
# end Green wavelengths
# start Red wavelengths
self.spec_620nm = float(spec_620nm)
self.spec_630nm = float(spec_630nm)
self.spec_640nm = float(spec_640nm)
self.spec_650nm = float(spec_650nm)
self.spec_660nm = float(spec_660nm)
self.spec_670nm = float(spec_670nm)
self.spec_680nm = float(spec_680nm)
self.spec_690nm = float(spec_690nm)
self.spec_700nm = float(spec_700nm)
self.spec_710nm = float(spec_710nm)
self.spec_720nm = float(spec_720nm)
# end Red wavelengths
self.spec_730nm = float(spec_730nm)
self.spec_740nm = float(spec_740nm)
self.spec_750nm = float(spec_750nm)
self.spec_760nm = float(spec_760nm)
self.spec_770nm = float(spec_770nm)
self.spec_780nm = float(spec_780nm)
self.spec_790nm = float(spec_790nm)
self.spec_800nm = float(spec_800nm)
self.spec_810nm = float(spec_810nm)
self.spec_820nm = float(spec_820nm)
self.spec_830nm = float(spec_830nm)
#: The color's observer angle. Set with :py:meth:`set_observer`.
self.observer = None
#: The color's illuminant. Set with :py:meth:`set_illuminant`.
self.illuminant = None
self.set_observer(observer)
self.set_illuminant(illuminant)
def get_numpy_array(self):
"""
Dump this color into NumPy array.
"""
# This holds the obect's spectral data, and will be passed to
# numpy.array() to create a numpy array (matrix) for the matrix math
# that will be done during the conversion to XYZ.
values = []
# Use the required value list to build this dynamically. Default to
# 0.0, since that ultimately won't affect the outcome due to the math
# involved.
for val in self.VALUES:
values.append(getattr(self, val, 0.0))
# Create and the actual numpy array/matrix from the spectral list.
color_array = numpy.array([values])
return color_array
def calc_density(self, density_standard=None):
"""
Calculates the density of the SpectralColor. By default, Status T
density is used, and the correct density distribution (Red, Green,
or Blue) is chosen by comparing the Red, Green, and Blue components of
the spectral sample (the values being red in via "filters").
"""
if density_standard is not None:
return density.ansi_density(self, density_standard)
else:
return density.auto_density(self)
class LabColor(IlluminantMixin, ColorBase):
"""
Represents a CIE Lab color. For more information on CIE Lab,
see `Lab color space <http://en.wikipedia.org/wiki/Lab_color_space>`_ on
Wikipedia.
"""
VALUES = ['lab_l', 'lab_a', 'lab_b']
def __init__(self, lab_l, lab_a, lab_b, observer='2', illuminant='d50'):
"""
:param float lab_l: L coordinate.
:param float lab_a: a coordinate.
:param float lab_b: b coordinate.
:keyword str observer: Observer angle. Either ``'2'`` or ``'10'`` degrees.
:keyword str illuminant: See :doc:`illuminants` for valid values.
"""
super(LabColor, self).__init__()
#: L coordinate
self.lab_l = float(lab_l)
#: a coordinate
self.lab_a = float(lab_a)
#: b coordinate
self.lab_b = float(lab_b)
#: The color's observer angle. Set with :py:meth:`set_observer`.
self.observer = None
#: The color's illuminant. Set with :py:meth:`set_illuminant`.
self.illuminant = None
self.set_observer(observer)
self.set_illuminant(illuminant)
class LCHabColor(IlluminantMixin, ColorBase):
"""
Represents an CIE LCH color that was converted to LCH by passing through
CIE Lab. This differs from :py:class:`LCHuvColor`, which was converted to
LCH through CIE Luv.
See `Introduction to Colour Spaces <http://www.colourphil.co.uk/lab_lch_colour_space.shtml>`_
by Phil Cruse for an illustration of how CIE LCH differs from CIE Lab.
"""
VALUES = ['lch_l', 'lch_c', 'lch_h']
def __init__(self, lch_l, lch_c, lch_h, observer='2', illuminant='d50'):
"""
:param float lch_l: L coordinate.
:param float lch_c: C coordinate.
:param float lch_h: H coordinate.
:keyword str observer: Observer angle. Either ``'2'`` or ``'10'`` degrees.
:keyword str illuminant: See :doc:`illuminants` for valid values.
"""
super(LCHabColor, self).__init__()
#: L coordinate
self.lch_l = float(lch_l)
#: C coordinate
self.lch_c = float(lch_c)
#: H coordinate
self.lch_h = float(lch_h)
#: The color's observer angle. Set with :py:meth:`set_observer`.
self.observer = None
#: The color's illuminant. Set with :py:meth:`set_illuminant`.
self.illuminant = None
self.set_observer(observer)
self.set_illuminant(illuminant)
class LCHuvColor(IlluminantMixin, ColorBase):
"""
Represents an CIE LCH color that was converted to LCH by passing through
CIE Luv. This differs from :py:class:`LCHabColor`, which was converted to
LCH through CIE Lab.
See `Introduction to Colour Spaces <http://www.colourphil.co.uk/lab_lch_colour_space.shtml>`_
by Phil Cruse for an illustration of how CIE LCH differs from CIE Lab.
"""
VALUES = ['lch_l', 'lch_c', 'lch_h']
def __init__(self, lch_l, lch_c, lch_h, observer='2', illuminant='d50'):
"""
:param float lch_l: L coordinate.
:param float lch_c: C coordinate.
:param float lch_h: H coordinate.
:keyword str observer: Observer angle. Either ``'2'`` or ``'10'`` degrees.
:keyword str illuminant: See :doc:`illuminants` for valid values.
"""
super(LCHuvColor, self).__init__()
#: L coordinate
self.lch_l = float(lch_l)
#: C coordinate
self.lch_c = float(lch_c)
#: H coordinate
self.lch_h = float(lch_h)
#: The color's observer angle. Set with :py:meth:`set_observer`.
self.observer = None
#: The color's illuminant. Set with :py:meth:`set_illuminant`.
self.illuminant = None
self.set_observer(observer)
self.set_illuminant(illuminant)
class LuvColor(IlluminantMixin, ColorBase):
"""
Represents an Luv color.
"""
VALUES = ['luv_l', 'luv_u', 'luv_v']
def __init__(self, luv_l, luv_u, luv_v, observer='2', illuminant='d50'):
"""
:param float luv_l: L coordinate.
:param float luv_u: u coordinate.
:param float luv_v: v coordinate.
:keyword str observer: Observer angle. Either ``'2'`` or ``'10'`` degrees.
:keyword str illuminant: See :doc:`illuminants` for valid values.
"""
super(LuvColor, self).__init__()
#: L coordinate
self.luv_l = float(luv_l)
#: u coordinate
self.luv_u = float(luv_u)
#: v coordinate
self.luv_v = float(luv_v)
#: The color's observer angle. Set with :py:meth:`set_observer`.
self.observer = None
#: The color's illuminant. Set with :py:meth:`set_illuminant`.
self.illuminant = None
self.set_observer(observer)
self.set_illuminant(illuminant)
class XYZColor(IlluminantMixin, ColorBase):
"""
Represents an XYZ color.
"""
VALUES = ['xyz_x', 'xyz_y', 'xyz_z']
def __init__(self, xyz_x, xyz_y, xyz_z, observer='2', illuminant='d50'):
"""
:param float xyz_x: X coordinate.
:param float xyz_y: Y coordinate.
:param float xyz_z: Z coordinate.
:keyword str observer: Observer angle. Either ``'2'`` or ``'10'`` degrees.
:keyword str illuminant: See :doc:`illuminants` for valid values.
"""
super(XYZColor, self).__init__()
#: X coordinate
self.xyz_x = float(xyz_x)
#: Y coordinate
self.xyz_y = float(xyz_y)
#: Z coordinate
self.xyz_z = float(xyz_z)
#: The color's observer angle. Set with :py:meth:`set_observer`.
self.observer = None
#: The color's illuminant. Set with :py:meth:`set_illuminant`.
self.illuminant = None
self.set_observer(observer)
self.set_illuminant(illuminant)
def apply_adaptation(self, target_illuminant, adaptation='bradford'):
"""
This applies an adaptation matrix to change the XYZ color's illuminant.
You'll most likely only need this during RGB conversions.
"""
logger.debug(" \- Original illuminant: %s", self.illuminant)
logger.debug(" \- Target illuminant: %s", target_illuminant)
# If the XYZ values were taken with a different reference white than the
# native reference white of the target RGB space, a transformation matrix
# must be applied.
if self.illuminant != target_illuminant:
logger.debug(" \* Applying transformation from %s to %s ",
self.illuminant, target_illuminant)
# Sets the adjusted XYZ values, and the new illuminant.
apply_chromatic_adaptation_on_color(
color=self,
targ_illum=target_illuminant,
adaptation=adaptation)
# noinspection PyPep8Naming
class xyYColor(IlluminantMixin, ColorBase):
"""
Represents an xYy color.
"""
VALUES = ['xyy_x', 'xyy_y', 'xyy_Y']
def __init__(self, xyy_x, xyy_y, xyy_Y, observer='2', illuminant='d50'):
"""
:param float xyy_x: x coordinate.
:param float xyy_y: y coordinate.
:param float xyy_Y: Y coordinate.
:keyword str observer: Observer angle. Either ``'2'`` or ``'10'`` degrees.
:keyword str illuminant: See :doc:`illuminants` for valid values.
"""
super(xyYColor, self).__init__()
#: x coordinate
self.xyy_x = float(xyy_x)
#: y coordinate
self.xyy_y = float(xyy_y)
#: Y coordinate
self.xyy_Y = float(xyy_Y)
#: The color's observer angle. Set with :py:meth:`set_observer`.
self.observer = None
#: The color's illuminant. Set with :py:meth:`set_illuminant`.
self.illuminant = None
self.set_observer(observer)
self.set_illuminant(illuminant)
class BaseRGBColor(ColorBase):
"""
Base class for all RGB color spaces.
.. warning:: Do not use this class directly!
"""
VALUES = ['rgb_r', 'rgb_g', 'rgb_b']
def __init__(self, rgb_r, rgb_g, rgb_b, is_upscaled=False):
"""
:param float rgb_r: R coordinate. 0...1. 1-255 if is_upscaled=True.
:param float rgb_g: G coordinate. 0...1. 1-255 if is_upscaled=True.
:param float rgb_b: B coordinate. 0...1. 1-255 if is_upscaled=True.
:keyword bool is_upscaled: If False, RGB coordinate values are
beteween 0.0 and 1.0. If True, RGB values are between 1 and 255.
"""
super(BaseRGBColor, self).__init__()
if is_upscaled:
self.rgb_r = rgb_r / 255.0
self.rgb_g = rgb_g / 255.0
self.rgb_b = rgb_b / 255.0
else:
self.rgb_r = float(rgb_r)
self.rgb_g = float(rgb_g)
self.rgb_b = float(rgb_b)
self.is_upscaled = is_upscaled
def _clamp_rgb_coordinate(self, coord):
"""
Clamps an RGB coordinate, taking into account whether or not the
color is upscaled or not.
:param float coord: The coordinate value.
:rtype: float
:returns: The clamped value.
"""
if not self.is_upscaled:
return min(max(coord, 0.0), 1.0)
else:
return min(max(coord, 1), 255)
@property
def clamped_rgb_r(self):
"""
The clamped (0.0-1.0) R value.
"""
return self._clamp_rgb_coordinate(self.rgb_r)
@property
def clamped_rgb_g(self):
"""
The clamped (0.0-1.0) G value.
"""
return self._clamp_rgb_coordinate(self.rgb_g)
@property
def clamped_rgb_b(self):
"""
The clamped (0.0-1.0) B value.
"""
return self._clamp_rgb_coordinate(self.rgb_b)
def get_upscaled_value_tuple(self):
"""
Scales an RGB color object from decimal 0.0-1.0 to int 0-255.
"""
# Scale up to 0-255 values.
rgb_r = int(math.floor(0.5 + self.rgb_r * 255))
rgb_g = int(math.floor(0.5 + self.rgb_g * 255))
rgb_b = int(math.floor(0.5 + self.rgb_b * 255))
return rgb_r, rgb_g, rgb_b
def get_rgb_hex(self):
"""
Converts the RGB value to a hex value in the form of: #RRGGBB
:rtype: str
"""
rgb_r, rgb_g, rgb_b = self.get_upscaled_value_tuple()
return '#%02x%02x%02x' % (rgb_r, rgb_g, rgb_b)
@classmethod
def new_from_rgb_hex(cls, hex_str):
"""
Converts an RGB hex string like #RRGGBB and assigns the values to
this sRGBColor object.
:rtype: sRGBColor
"""
colorstring = hex_str.strip()
if colorstring[0] == '#':
colorstring = colorstring[1:]
if len(colorstring) != 6:
raise ValueError("input #%s is not in #RRGGBB format" % colorstring)
r, g, b = colorstring[:2], colorstring[2:4], colorstring[4:]
r, g, b = [int(n, 16) / 255.0 for n in (r, g, b)]
return cls(r, g, b)
# noinspection PyPep8Naming
class sRGBColor(BaseRGBColor):
"""
Represents an sRGB color.
.. note:: If you pass in upscaled values, we automatically scale them
down to 0.0-1.0. If you need the old upscaled values, you can
retrieve them with :py:meth:`get_upscaled_value_tuple`.
:ivar float rgb_r: R coordinate
:ivar float rgb_g: G coordinate
:ivar float rgb_b: B coordinate
:ivar bool is_upscaled: If True, RGB values are between 1-255. If False,
0.0-1.0.
"""
#: RGB space's gamma constant.
rgb_gamma = 2.2
#: The RGB space's native illuminant. Important when converting to XYZ.
native_illuminant = "d65"
conversion_matrices = {
"xyz_to_rgb":
numpy.array((
(3.24071, -1.53726, -0.498571),
(-0.969258, 1.87599, 0.0415557),
(0.0556352, -0.203996, 1.05707))),
"rgb_to_xyz":
numpy.array((
(0.412424, 0.357579, 0.180464),
(0.212656, 0.715158, 0.0721856),
(0.0193324, 0.119193, 0.950444))),
}
class AdobeRGBColor(BaseRGBColor):
"""
Represents an Adobe RGB color.
.. note:: If you pass in upscaled values, we automatically scale them
down to 0.0-1.0. If you need the old upscaled values, you can
retrieve them with :py:meth:`get_upscaled_value_tuple`.
:ivar float rgb_r: R coordinate
:ivar float rgb_g: G coordinate
:ivar float rgb_b: B coordinate
:ivar bool is_upscaled: If True, RGB values are between 1-255. If False,
0.0-1.0.
"""
#: RGB space's gamma constant.
rgb_gamma = 2.2
#: The RGB space's native illuminant. Important when converting to XYZ.
native_illuminant = "d65"
conversion_matrices = {
"xyz_to_rgb":
numpy.array((
(2.04148, -0.564977, -0.344713),
(-0.969258, 1.87599, 0.0415557),
(0.0134455, -0.118373, 1.01527))),
"rgb_to_xyz":
numpy.array((
(0.576700, 0.185556, 0.188212),
(0.297361, 0.627355, 0.0752847),
(0.0270328, 0.0706879, 0.991248))),
}
class AppleRGBColor(BaseRGBColor):
"""
Represents an AppleRGB color.
.. note:: If you pass in upscaled values, we automatically scale them
down to 0.0-1.0. If you need the old upscaled values, you can
retrieve them with :py:meth:`get_upscaled_value_tuple`.
:ivar float rgb_r: R coordinate
:ivar float rgb_g: G coordinate
:ivar float rgb_b: B coordinate
:ivar bool is_upscaled: If True, RGB values are between 1-255. If False,
0.0-1.0.
"""
#: RGB space's gamma constant.
rgb_gamma = 1.8
#: The RGB space's native illuminant. Important when converting to XYZ.
native_illuminant = "d65"
conversion_matrices = {
"xyz_to_rgb":
numpy.array((
(2.9515373, -1.2894116, -0.4738445),
(-1.0851093, 1.9908566, 0.0372026),
(0.0854934, -0.2694964, 1.0912975))),
"rgb_to_xyz":
numpy.array((
(0.4497288, 0.3162486, 0.1844926),
(0.2446525, 0.6720283, 0.0833192),
(0.0251848, 0.1411824, 0.9224628))),
}
class HSLColor(ColorBase):
"""
Represents an HSL color.
"""
VALUES = ['hsl_h', 'hsl_s', 'hsl_l']
def __init__(self, hsl_h, hsl_s, hsl_l):
"""
:param float hsl_h: H coordinate.
:param float hsl_s: S coordinate.
:param float hsl_l: L coordinate.
"""
super(HSLColor, self).__init__()
#: H coordinate
self.hsl_h = float(hsl_h)
#: S coordinate
self.hsl_s = float(hsl_s)
#: L coordinate
self.hsl_l = float(hsl_l)
class HSVColor(ColorBase):
"""
Represents an HSV color.
"""
VALUES = ['hsv_h', 'hsv_s', 'hsv_v']
def __init__(self, hsv_h, hsv_s, hsv_v):
"""
:param float hsv_h: H coordinate.
:param float hsv_s: S coordinate.
:param float hsv_v: V coordinate.
"""
super(HSVColor, self).__init__()
#: H coordinate
self.hsv_h = float(hsv_h)
#: S coordinate
self.hsv_s = float(hsv_s)
#: V coordinate
self.hsv_v = float(hsv_v)
class CMYColor(ColorBase):
"""
Represents a CMY color.
"""
VALUES = ['cmy_c', 'cmy_m', 'cmy_y']
def __init__(self, cmy_c, cmy_m, cmy_y):
"""
:param float cmy_c: C coordinate.
:param float cmy_m: M coordinate.
:param float cmy_y: Y coordinate.
"""
super(CMYColor, self).__init__()
#: C coordinate
self.cmy_c = float(cmy_c)
#: M coordinate
self.cmy_m = float(cmy_m)
#: Y coordinate
self.cmy_y = float(cmy_y)
class CMYKColor(ColorBase):
"""
Represents a CMYK color.
"""
VALUES = ['cmyk_c', 'cmyk_m', 'cmyk_y', 'cmyk_k']
def __init__(self, cmyk_c, cmyk_m, cmyk_y, cmyk_k):
"""
:param float cmyk_c: C coordinate.
:param float cmyk_m: M coordinate.
:param float cmyk_y: Y coordinate.
:param float cmyk_k: K coordinate.
"""
super(CMYKColor, self).__init__()
#: C coordinate
self.cmyk_c = float(cmyk_c)
#: M coordinate
self.cmyk_m = float(cmyk_m)
#: Y coordinate
self.cmyk_y = float(cmyk_y)
#: K coordinate
self.cmyk_k = float(cmyk_k)
class IPTColor(ColorBase):
"""
Represents an IPT color.
Reference:
Fairchild, M. D. (2013). Color appearance models, 3rd Ed. (pp. 271-272). John Wiley & Sons.
"""
VALUES = ['ipt_i', 'ipt_p', 'ipt_t']
conversion_matrices = {
"xyz_to_lms":
numpy.array((
( 0.4002, 0.7075, -0.0807),
(-0.2280, 1.1500, 0.0612),
( 0.0000, 0.0000, 0.9184))),
"lms_to_ipt":
numpy.array(
((0.4000, 0.4000, 0.2000),
(4.4550, -4.8510, 0.3960),
(0.8056, 0.3572, -1.1628))),
}
def __init__(self, ipt_i, ipt_p, ipt_t):
"""
:param ipt_i: I coordinate.
:param ipt_p: P coordinate.
:param ipt_t: T coordinate.
"""
super(IPTColor, self).__init__()
#: I coordinate
self.ipt_i = ipt_i
#: P coordinate
self.ipt_p = ipt_p
#: T coordinate
self.ipt_t = ipt_t
@property
def hue_angle(self):
return numpy.arctan2(self.ipt_t, self.ipt_p)
|