/usr/lib/python2.7/dist-packages/DisplayCAL/wxSynthICCFrame.py is in dispcalgui 3.5.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 | # -*- coding: utf-8 -*-
import math
import os
import sys
from ICCProfile import ICCProfile
from config import (enc, get_data_path, get_verified_path, getcfg, hascfg,
profile_ext, setcfg)
from log import log, safe_print
from meta import name as appname
from options import debug
from ordereddict import OrderedDict
from util_io import Files
from util_os import waccess
from util_str import safe_str
from worker import Error, FilteredStream, LineBufferedStream, show_result_dialog
import ICCProfile as ICCP
import colormath
import config
import localization as lang
import worker
from wxwindows import BaseApp, BaseFrame, FileDrop, InfoDialog, wx
from wxfixes import TempXmlResource
from wxLUT3DFrame import LUT3DFrame
import floatspin
import xh_floatspin
import xh_bitmapctrls
from wx import xrc
class SynthICCFrame(BaseFrame):
""" Synthetic ICC creation window """
# Shared methods from 3D LUT UI
for lut3d_ivar_name, lut3d_ivar in LUT3DFrame.__dict__.iteritems():
if lut3d_ivar_name.startswith("lut3d_"):
locals()[lut3d_ivar_name] = lut3d_ivar
def __init__(self, parent=None):
self.res = TempXmlResource(get_data_path(os.path.join("xrc",
"synthicc.xrc")))
self.res.InsertHandler(xh_floatspin.FloatSpinCtrlXmlHandler())
self.res.InsertHandler(xh_bitmapctrls.BitmapButton())
self.res.InsertHandler(xh_bitmapctrls.StaticBitmap())
if hasattr(wx, "PreFrame"):
# Classic
pre = wx.PreFrame()
self.res.LoadOnFrame(pre, parent, "synthiccframe")
self.PostCreate(pre)
else:
# Phoenix
wx.Frame.__init__(self)
self.res.LoadFrame(self, parent, "synthiccframe")
self.init()
self.Bind(wx.EVT_CLOSE, self.OnClose)
self.SetIcons(config.get_icon_bundle([256, 48, 32, 16],
appname + "-synthprofile"))
self.set_child_ctrls_as_attrs(self)
self.panel = self.FindWindowByName("panel")
self._updating_ctrls = False
# Presets
presets = [""] + sorted(colormath.rgb_spaces.keys())
self.preset_ctrl.SetItems(presets)
self.worker = worker.Worker(self)
# Drop targets
self.droptarget = FileDrop(self)
self.droptarget.drophandlers = {".icc": self.drop_handler,
".icm": self.drop_handler}
self.panel.SetDropTarget(self.droptarget)
# Bind event handlers
self.preset_ctrl.Bind(wx.EVT_CHOICE, self.preset_ctrl_handler)
for color in ("red", "green", "blue", "white", "black"):
for component in "XYZxy":
if component in "xy":
handler = "xy"
else:
handler = "XYZ"
self.Bind(floatspin.EVT_FLOATSPIN,
getattr(self, "%s_%s_ctrl_handler" % (color,
handler)),
getattr(self, "%s_%s" % (color, component)))
self.black_point_cb.Bind(wx.EVT_CHECKBOX,
self.black_point_enable_handler)
self.trc_ctrl.Bind(wx.EVT_CHOICE, self.trc_ctrl_handler)
self.trc_gamma_ctrl.Bind(wx.EVT_COMBOBOX, self.trc_gamma_ctrl_handler)
self.trc_gamma_ctrl.Bind(wx.EVT_KILL_FOCUS, self.trc_gamma_ctrl_handler)
self.trc_gamma_type_ctrl.Bind(wx.EVT_CHOICE, self.trc_gamma_type_ctrl_handler)
self.lut3d_bind_hdr_trc_handlers()
self.black_output_offset_ctrl.Bind(wx.EVT_SLIDER,
self.black_output_offset_ctrl_handler)
self.black_output_offset_intctrl.Bind(wx.EVT_TEXT,
self.black_output_offset_ctrl_handler)
self.colorspace_rgb_ctrl.Bind(wx.EVT_RADIOBUTTON,
self.colorspace_ctrl_handler)
self.colorspace_gray_ctrl.Bind(wx.EVT_RADIOBUTTON,
self.colorspace_ctrl_handler)
self.black_luminance_ctrl.Bind(floatspin.EVT_FLOATSPIN,
self.black_luminance_ctrl_handler)
self.luminance_ctrl.Bind(floatspin.EVT_FLOATSPIN,
self.luminance_ctrl_handler)
self.save_as_btn.Bind(wx.EVT_BUTTON, self.save_as_btn_handler)
self.save_as_btn.SetDefault()
self.save_as_btn.Disable()
self.setup_language()
self.update_controls()
self.update_layout()
self.save_btn.Hide()
config.defaults.update({
"position.synthiccframe.x": self.GetDisplay().ClientArea[0] + 40,
"position.synthiccframe.y": self.GetDisplay().ClientArea[1] + 60,
"size.synthiccframe.w": self.GetMinSize()[0],
"size.synthiccframe.h": self.GetMinSize()[1]})
if (hascfg("position.synthiccframe.x") and
hascfg("position.synthiccframe.y") and
hascfg("size.synthiccframe.w") and
hascfg("size.synthiccframe.h")):
self.SetSaneGeometry(int(getcfg("position.synthiccframe.x")),
int(getcfg("position.synthiccframe.y")),
int(getcfg("size.synthiccframe.w")),
int(getcfg("size.synthiccframe.h")))
else:
self.Center()
def OnClose(self, event=None):
if sys.platform == "darwin" or debug: self.focus_handler(event)
if (self.IsShownOnScreen() and not self.IsMaximized() and
not self.IsIconized()):
x, y = self.GetScreenPosition()
setcfg("position.synthiccframe.x", x)
setcfg("position.synthiccframe.y", y)
setcfg("size.synthiccframe.w", self.GetSize()[0])
setcfg("size.synthiccframe.h", self.GetSize()[1])
if self.Parent:
config.writecfg()
else:
config.writecfg(module="synthprofile",
options=("synthprofile.", "last_icc_path",
"position.synthiccframe",
"size.synthiccframe",
"3dlut.hdr_"))
if event:
# Hide first (looks nicer)
self.Hide()
# Need to use CallAfter to prevent hang under Windows if minimized
wx.CallAfter(self.Destroy)
def black_luminance_ctrl_handler(self, event):
v = self.black_luminance_ctrl.GetValue()
white_Y = getcfg("synthprofile.luminance")
if v >= white_Y * .9:
if event:
wx.Bell()
v = white_Y * .9
if event:
min_Y = (1 / 65535.0) * 100
increment = (1 / 65535.0) * white_Y
if increment < min_Y:
increment = min_Y * (white_Y / 100.0)
min_inc = 1.0 / (10.0 ** self.black_luminance_ctrl.GetDigits())
if increment < min_inc:
increment = min_inc
self.black_luminance_ctrl.SetIncrement(increment)
fmt = "%%.%if" % self.black_luminance_ctrl.GetDigits()
if fmt % v > fmt % 0 and fmt % v < fmt % increment:
if event:
v = increment
else:
v = 0
elif fmt % v == fmt % 0:
v = 0
v = round(v / increment) * increment
self.black_luminance_ctrl.SetValue(v)
old = getcfg("synthprofile.black_luminance")
setcfg("synthprofile.black_luminance", v)
if event:
self.black_xy_ctrl_handler(None)
self.black_point_cb.Enable(v > 0)
self.black_point_enable_handler(None)
if (v != old and (old == 0 or v == 0)) or event is True:
self.Freeze()
i = self.trc_ctrl.GetSelection()
self.trc_gamma_type_ctrl.Show(i in (0, 5) and bool(v))
if not v:
self.bpc_ctrl.SetValue(False)
self.bpc_ctrl.Enable(bool(v))
black_output_offset_show = (i in (0, 5, 7, 8) and bool(v))
self.black_output_offset_label.Show(black_output_offset_show)
self.black_output_offset_ctrl.Show(black_output_offset_show)
self.black_output_offset_intctrl.Show(black_output_offset_show)
self.black_output_offset_intctrl_label.Show(black_output_offset_show)
self.panel.GetSizer().Layout()
self.update_layout()
self.Thaw()
def black_output_offset_ctrl_handler(self, event):
if event.GetId() == self.black_output_offset_intctrl.GetId():
self.black_output_offset_ctrl.SetValue(
self.black_output_offset_intctrl.GetValue())
else:
self.black_output_offset_intctrl.SetValue(
self.black_output_offset_ctrl.GetValue())
v = self.black_output_offset_ctrl.GetValue() / 100.0
setcfg("synthprofile.trc_output_offset", v)
self.update_trc_control()
def black_point_enable_handler(self, event):
v = getcfg("synthprofile.black_luminance")
for component in "XYZxy":
getattr(self, "black_%s" % component).Enable(v > 0 and
self.black_point_cb.Value)
def black_XYZ_ctrl_handler(self, event):
luminance = getcfg("synthprofile.luminance")
XYZ = []
for component in "XYZ":
XYZ.append(getattr(self, "black_%s" % component).GetValue() / 100.0)
if component == "Y":
self.black_luminance_ctrl.SetValue(XYZ[-1] * luminance)
self.black_luminance_ctrl_handler(None)
if not XYZ[-1]:
XYZ = [0, 0, 0]
for i in xrange(3):
getattr(self, "black_%s" % "XYZ"[i]).SetValue(0)
break
for i, v in enumerate(colormath.XYZ2xyY(*XYZ)[:2]):
getattr(self, "black_%s" % "xy"[i]).SetValue(v)
def black_xy_ctrl_handler(self, event):
# Black Y scaled to 0..1 range
Y = (getcfg("synthprofile.black_luminance") /
getcfg("synthprofile.luminance"))
xy = []
for component in "xy":
xy.append(getattr(self, "black_%s" % component).GetValue() or 1.0 /
3)
getattr(self, "black_%s" % component).SetValue(xy[-1])
for i, v in enumerate(colormath.xyY2XYZ(*xy + [Y])):
getattr(self, "black_%s" % "XYZ"[i]).SetValue(v * 100)
def blue_XYZ_ctrl_handler(self, event):
self.parse_XYZ("blue")
def blue_xy_ctrl_handler(self, event):
self.parse_xy("blue")
def colorspace_ctrl_handler(self, event):
show = bool(self.colorspace_rgb_ctrl.Value)
for color in ("red", "green", "blue"):
getattr(self, "label_%s" % color).Show(show)
for component in "XYZxy":
getattr(self, "%s_%s" % (color, component)).Show(show)
self.enable_save_as_btn()
self.update_layout()
def drop_handler(self, path):
try:
profile = ICCP.ICCProfile(path)
except (IOError, ICCP.ICCProfileInvalidError), exception:
show_result_dialog(Error(lang.getstr("profile.invalid") + "\n" +
path), self)
else:
if profile.version >= 4:
show_result_dialog(Error(lang.getstr("profile.iccv4.unsupported")),
self)
return
if (profile.colorSpace not in ("RGB", "GRAY") or
profile.connectionColorSpace not in ("Lab", "XYZ")):
show_result_dialog(Error(lang.getstr("profile.unsupported",
(profile.profileClass,
profile.colorSpace))),
self)
return
rgb = [(1, 1, 1), (0, 0, 0), (1, 0, 0), (0, 1, 0), (0, 0, 1)]
for i in xrange(256):
rgb.append((1.0 / 255 * i, 1.0 / 255 * i, 1.0 / 255 * i))
try:
colors = self.worker.xicclu(profile, rgb, intent="a", pcs="x")
except Exception, exception:
show_result_dialog(exception, self)
else:
self.panel.Freeze()
for ctrl, value in [(self.colorspace_rgb_ctrl,
profile.colorSpace == "RGB"),
(self.colorspace_gray_ctrl,
profile.colorSpace == "GRAY")]:
ctrl.SetValue(value)
self.colorspace_ctrl_handler(None)
if "lumi" in profile.tags:
luminance = profile.tags.lumi.Y
else:
luminance = 100
setcfg("synthprofile.luminance", luminance)
self.luminance_ctrl.SetValue(luminance)
for i, color in enumerate(("white", "black")):
for j, component in enumerate("XYZ"):
getattr(self, "%s_%s" %
(color, component)).SetValue(colors[i][j] /
colors[0][1] * 100)
self.parse_XYZ(color)
for i, color in enumerate(("red", "green", "blue")):
xyY = colormath.XYZ2xyY(*colors[2 + i])
for j, component in enumerate("xy"):
getattr(self, "%s_%s" %
(color, component)).SetValue(xyY[j])
self.parse_xy(None)
self.black_XYZ_ctrl_handler(None)
trc = ICCP.CurveType(profile=profile)
for XYZ in colors[5:]:
trc.append(XYZ[1] / colors[0][1] * 65535)
transfer_function = trc.get_transfer_function(outoffset=1.0)
if transfer_function and transfer_function[1] >= .95:
# Use detected transfer function
gamma = transfer_function[0][1]
else:
# Use 50% gamma value
gamma = math.log(colors[132][1]) / math.log(128.0 / 255)
self.set_trc(round(gamma, 2))
setcfg("synthprofile.trc_gamma_type", "g")
self.trc_gamma_type_ctrl.SetSelection(self.trc_gamma_types_ba["g"])
self.panel.Thaw()
def enable_save_as_btn(self):
self.save_as_btn.Enable(bool(self.get_XYZ()))
def get_XYZ(self):
""" Get XYZ in 0..1 range """
XYZ = {}
black_Y = (getcfg("synthprofile.black_luminance") /
getcfg("synthprofile.luminance"))
for color in ("white", "red", "green", "blue", "black"):
for component in "XYZ":
v = getattr(self, "%s_%s" % (color,
component)).GetValue() / 100.0
if color == "black":
key = "k"
if not self.black_point_cb.Value:
v = XYZ["w%s" % component] * black_Y
else:
key = color[0]
XYZ[key + component] = v
if (XYZ["wX"] and XYZ["wY"] and XYZ["wZ"] and
(self.colorspace_gray_ctrl.Value or
(XYZ["rX"] and XYZ["gY"] and XYZ["bZ"]))):
return XYZ
def green_XYZ_ctrl_handler(self, event):
self.parse_XYZ("green")
def green_xy_ctrl_handler(self, event):
self.parse_xy("green")
def luminance_ctrl_handler(self, event):
v = self.luminance_ctrl.GetValue()
setcfg("synthprofile.luminance", v)
self.lut3d_set_option("3dlut.hdr_peak_luminance", v)
self.black_luminance_ctrl_handler(event)
def parse_XYZ(self, name, set_blackpoint=False):
if not set_blackpoint:
set_blackpoint = not self.black_point_cb.Value
if not self._updating_ctrls:
self.preset_ctrl.SetSelection(0)
XYZ = {}
# Black Y scaled to 0..1 range
black_Y = (getcfg("synthprofile.black_luminance") /
getcfg("synthprofile.luminance"))
for component in "XYZ":
v = getattr(self, "%s_%s" % (name, component)).GetValue()
XYZ[component] = v
if name == "white" and set_blackpoint:
getattr(self, "black_%s" % (component)).SetValue(v * black_Y)
if "X" in XYZ and "Y" in XYZ and "Z" in XYZ:
xyY = colormath.XYZ2xyY(XYZ["X"], XYZ["Y"], XYZ["Z"])
for i, component in enumerate("xy"):
getattr(self, "%s_%s" % (name, component)).SetValue(xyY[i])
if name == "white" and set_blackpoint:
getattr(self, "black_%s" % (component)).SetValue(xyY[i])
self.enable_save_as_btn()
def parse_xy(self, name=None, set_blackpoint=False):
if not set_blackpoint:
set_blackpoint = not self.black_point_cb.Value
if not self._updating_ctrls:
self.preset_ctrl.SetSelection(0)
xy = {}
for color in ("white", "red", "green", "blue"):
for component in "xy":
v = getattr(self, "%s_%s" % (color, component)).GetValue()
xy[color[0] + component] = v
if name == "white":
wXYZ = colormath.xyY2XYZ(xy["wx"], xy["wy"], 1.0)
else:
wXYZ = []
for component in "XYZ":
wXYZ.append(getattr(self, "white_%s" % component).GetValue() /
100.0)
if name == "white":
# Black Y scaled to 0..1 range
black_Y = (getcfg("synthprofile.black_luminance") /
getcfg("synthprofile.luminance"))
for i, component in enumerate("XYZ"):
getattr(self, "white_%s" % component).SetValue(wXYZ[i] * 100)
if set_blackpoint:
getattr(self, "black_%s" % component).SetValue(wXYZ[i] *
black_Y *
100)
has_rgb_xy = True
# Calculate RGB to XYZ matrix from chromaticities and white
try:
mtx = colormath.rgb_to_xyz_matrix(xy["rx"], xy["ry"],
xy["gx"], xy["gy"],
xy["bx"], xy["by"],
wXYZ)
except ZeroDivisionError:
# Singular matrix
has_rgb_xy = False
rgb = {"r": (1.0, 0.0, 0.0),
"g": (0.0, 1.0, 0.0),
"b": (0.0, 0.0, 1.0)}
XYZ = {}
for color in ("red", "green", "blue"):
if has_rgb_xy:
# Calculate XYZ for primaries
v = mtx * rgb[color[0]]
if not has_rgb_xy:
v = (0, 0, 0)
XYZ[color[0]] = v
for i, component in enumerate("XYZ"):
getattr(self, "%s_%s" %
(color, component)).SetValue(XYZ[color[0]][i] * 100)
self.enable_save_as_btn()
def preset_ctrl_handler(self, event):
preset_name = self.preset_ctrl.GetStringSelection()
if preset_name:
gamma, white, red, green, blue = colormath.rgb_spaces[preset_name]
white = colormath.get_whitepoint(white)
self._updating_ctrls = True
self.panel.Freeze()
if self.preset_ctrl.GetStringSelection() == "DCI P3":
tech = self.tech["dcpj"]
else:
tech = self.tech[""]
self.tech_ctrl.SetStringSelection(tech)
for i, component in enumerate("XYZ"):
getattr(self, "white_%s" % component).SetValue(white[i] * 100)
self.parse_XYZ("white", True)
for color in ("red", "green", "blue"):
for i, component in enumerate("xy"):
getattr(self, "%s_%s" % (color, component)).SetValue(locals()[color][i])
self.parse_xy(None)
self.set_trc(gamma)
self.panel.Thaw()
self._updating_ctrls = False
def get_commands(self):
return self.get_common_commands() + ["synthprofile [filename]",
"load <filename>"]
def process_data(self, data):
if (data[0] == "synthprofile" and
len(data) < 3) or (data[0] == "load" and len(data) == 2):
if self.IsIconized():
self.Restore()
self.Raise()
if len(data) == 2:
path = data[1]
if not os.path.isfile(path) and not os.path.isabs(path):
path = get_data_path(path)
if not path:
return "fail"
else:
self.droptarget.OnDropFiles(0, 0, [path])
return "ok"
return "invalid"
def set_trc(self, gamma):
if gamma == -1023:
# DICOM
self.trc_ctrl.SetSelection(1)
elif gamma == -2.0:
# HLG
self.trc_ctrl.SetSelection(2)
elif gamma == -3.0:
# L*
self.trc_ctrl.SetSelection(3)
elif gamma == -709:
# Rec. 709
self.trc_ctrl.SetSelection(4)
elif gamma == -1886:
# Rec. 1886
self.trc_ctrl.SetSelection(5)
self.trc_ctrl_handler()
elif gamma == -240:
# SMPTE 240M
self.trc_ctrl.SetSelection(6)
elif gamma == -2084:
# SMPTE 2084, roll-off clip
self.trc_ctrl.SetSelection(8)
elif gamma == -2.4:
# sRGB
self.trc_ctrl.SetSelection(9)
else:
# Gamma
self.trc_ctrl.SetSelection(0)
setcfg("synthprofile.trc_gamma", gamma)
self.update_trc_controls()
def profile_name_ctrl_handler(self, event):
self.enable_save_as_btn()
def red_XYZ_ctrl_handler(self, event):
self.parse_XYZ("red")
def red_xy_ctrl_handler(self, event):
self.parse_xy("red")
def save_as_btn_handler(self, event):
try:
gamma = float(self.trc_gamma_ctrl.Value)
except ValueError:
wx.Bell()
gamma = 2.2
self.trc_gamma_ctrl.Value = str(gamma)
defaultDir, defaultFile = get_verified_path("last_icc_path")
defaultFile = lang.getstr("unnamed")
path = None
dlg = wx.FileDialog(self,
lang.getstr("save_as"),
defaultDir=defaultDir,
defaultFile=defaultFile,
wildcard=lang.getstr("filetype.icc") +
"|*" + profile_ext,
style=wx.SAVE | wx.FD_OVERWRITE_PROMPT)
dlg.Center(wx.BOTH)
if dlg.ShowModal() == wx.ID_OK:
path = dlg.GetPath()
dlg.Destroy()
if path:
if os.path.splitext(path)[1].lower() not in (".icc", ".icm"):
path += profile_ext
if not waccess(path, os.W_OK):
show_result_dialog(Error(lang.getstr("error.access_denied.write",
path)),
self)
return
setcfg("last_icc_path", path)
else:
return
XYZ = self.get_XYZ()
if self.trc_ctrl.GetSelection() in (0, 5):
# 0 = Gamma
# 5 = Rec. 1886 - trc set here is only used if black = 0
trc = gamma
elif self.trc_ctrl.GetSelection() == 1:
# DICOM
trc = -1
elif self.trc_ctrl.GetSelection() == 2:
# HLG
trc = -2
elif self.trc_ctrl.GetSelection() == 3:
# L*
trc = -3.0
elif self.trc_ctrl.GetSelection() == 4:
# Rec. 709
trc = -709
elif self.trc_ctrl.GetSelection() == 6:
# SMPTE 240M
trc = -240
elif self.trc_ctrl.GetSelection() in (7, 8):
# SMPTE 2084
trc = -2084
elif self.trc_ctrl.GetSelection() == 9:
# sRGB
trc = -2.4
rolloff = self.trc_ctrl.GetSelection() == 8
class_i = self.profile_class_ctrl.GetSelection()
tech_i = self.tech_ctrl.GetSelection()
ciis_i = self.ciis_ctrl.GetSelection()
consumer = lambda result: (isinstance(result, Exception) and
show_result_dialog(result, self))
wargs = (XYZ, trc, path)
wkwargs = {"rgb": self.colorspace_rgb_ctrl.Value,
"rolloff": rolloff,
"bpc": self.bpc_ctrl.Value,
"profile_class": self.profile_classes.keys()[class_i],
"tech": self.tech.keys()[tech_i],
"ciis": self.ciis.keys()[ciis_i]}
if (trc == -2084 and rolloff) or trc == -2:
if trc == -2084:
msg = "smpte2084.rolloffclip"
else:
msg = "hlg"
self.worker.recent.write(lang.getstr("trc." + msg) + "\n")
self.worker.start(consumer,
self.create_profile, wargs=(XYZ, trc, path),
wkwargs=wkwargs,
progress_msg=lang.getstr("synthicc.create"))
else:
consumer(self.create_profile(*wargs, **wkwargs))
def create_profile(self, XYZ, trc, path, rgb=True, rolloff=True, bpc=False,
profile_class="mntr", tech=None, ciis=None):
white = XYZ["wX"], XYZ["wY"], XYZ["wZ"]
if rgb:
# Color profile
profile = ICCP.ICCProfile.from_XYZ((XYZ["rX"], XYZ["rY"], XYZ["rZ"]),
(XYZ["gX"], XYZ["gY"], XYZ["gZ"]),
(XYZ["bX"], XYZ["bY"], XYZ["bZ"]),
(XYZ["wX"], XYZ["wY"], XYZ["wZ"]),
1.0,
"",
getcfg("copyright"))
black = colormath.adapt(XYZ["kX"], XYZ["kY"], XYZ["kZ"], white)
profile.tags.rTRC = ICCP.CurveType(profile=profile)
profile.tags.gTRC = ICCP.CurveType(profile=profile)
profile.tags.bTRC = ICCP.CurveType(profile=profile)
channels = "rgb"
else:
# Grayscale profile
profile = ICCP.ICCProfile()
profile.colorSpace = "GRAY"
profile.setCopyright(getcfg("copyright"))
profile.tags.wtpt = ICCP.XYZType()
(profile.tags.wtpt.X,
profile.tags.wtpt.Y,
profile.tags.wtpt.Z) = (XYZ["wX"], XYZ["wY"], XYZ["wZ"])
black = [XYZ["wY"] * (getcfg("synthprofile.black_luminance") /
getcfg("synthprofile.luminance"))] * 3
profile.tags.kTRC = ICCP.CurveType(profile=profile)
channels = "k"
if trc == -2:
# HLG
outoffset = 1
else:
outoffset = getcfg("synthprofile.trc_output_offset")
if trc == -1:
# DICOM
# Absolute luminance values!
try:
if rgb:
# Color profile
profile.set_dicom_trc([v * getcfg("synthprofile.luminance")
for v in black],
getcfg("synthprofile.luminance"))
else:
# Grayscale profile
profile.tags.kTRC.set_dicom_trc(getcfg("synthprofile.black_luminance"),
getcfg("synthprofile.luminance"))
except ValueError, exception:
return exception
elif trc > -1 and black != [0, 0, 0]:
# Gamma with output offset or Rec. 1886-like
if rgb:
# Color profile
profile.set_bt1886_trc(black, outoffset, trc,
getcfg("synthprofile.trc_gamma_type"))
else:
# Grayscale profile
profile.tags.kTRC.set_bt1886_trc(black[1], outoffset, trc,
getcfg("synthprofile.trc_gamma_type"))
elif trc == -2084 or trc == -2:
# SMPTE 2084 or HLG
if trc == -2084:
hdr_format = "PQ"
else:
hdr_format = "HLG"
minmll = getcfg("3dlut.hdr_minmll")
if rolloff:
maxmll = getcfg("3dlut.hdr_maxmll")
else:
maxmll = getcfg("synthprofile.luminance")
if rgb:
# Color profile
if trc == -2084:
profile.set_smpte2084_trc([v * getcfg("synthprofile.luminance") *
(1 - outoffset)
for v in black],
getcfg("synthprofile.luminance"),
minmll, maxmll,
rolloff=True,
blend_blackpoint=False)
else:
# HLG
profile.set_hlg_trc((0, 0, 0),
getcfg("synthprofile.luminance"),
1.2,
getcfg("3dlut.hdr_ambient_luminance"),
blend_blackpoint=False)
if rolloff or trc == -2:
rgb_space = profile.get_rgb_space()
rgb_space[0] = 1.0 # Set gamma to 1.0 (not actually used)
rgb_space = colormath.get_rgb_space(rgb_space)
linebuffered_logfiles = []
if sys.stdout.isatty():
linebuffered_logfiles.append(safe_print)
else:
linebuffered_logfiles.append(log)
logfiles = Files([LineBufferedStream(
FilteredStream(Files(linebuffered_logfiles),
enc, discard="",
linesep_in="\n",
triggers=[])),
self.worker.recent,
self.worker.lastmsg])
quality = getcfg("profile.quality")
clutres = {"m": 17, "l": 9}.get(quality, 33)
profile.tags.A2B0 = ICCP.create_synthetic_hdr_clut_profile(
hdr_format,
rgb_space, "",
getcfg("synthprofile.black_luminance") * (1 - outoffset),
getcfg("synthprofile.luminance"), minmll, maxmll,
1.2, getcfg("3dlut.hdr_ambient_luminance"),
clutres=clutres, worker=self.worker,
logfile=logfiles).tags.A2B0
if black != [0, 0, 0] and outoffset and not bpc:
profile.apply_black_offset(black)
if rolloff or trc == -2:
profile.write(path)
self.worker.update_profile_B2A(profile, not bpc,
smooth=False,
rgb_space=rgb_space)
else:
# Grayscale profile
if trc == -2084:
profile.tags.kTRC.set_smpte2084_trc(getcfg("synthprofile.black_luminance") *
(1 - outoffset),
getcfg("synthprofile.luminance"),
minmll, maxmll,
rolloff=True)
else:
# HLG
profile.tags.kTRC.set_smpte2084_trc(0,
1.2,
getcfg("3dlut.hdr_ambient_luminance"))
if black != [0, 0, 0] and outoffset and not bpc:
profile.tags.kTRC.apply_bpc(black[1])
elif black != [0, 0, 0]:
if rgb:
# Color profile
vmin = 0
else:
# Grayscale profile
vmin = black[1]
for i, channel in enumerate(channels):
TRC = profile.tags["%sTRC" % channel]
TRC.set_trc(trc, 1024, vmin=vmin * 65535)
if rgb:
profile.apply_black_offset(black)
else:
for channel in channels:
profile.tags["%sTRC" % channel].set_trc(trc, 1)
if black != [0, 0, 0] and bpc:
if rgb:
profile.apply_black_offset((0, 0, 0))
else:
profile.tags.kTRC.apply_bpc()
for tagname in ("lumi", "bkpt"):
if tagname == "lumi":
# Absolute
X, Y, Z = [(v / XYZ["wY"]) * getcfg("synthprofile.luminance")
for v in (XYZ["wX"], XYZ["wY"], XYZ["wZ"])]
else:
X, Y, Z = (XYZ["kX"], XYZ["kY"], XYZ["kZ"])
profile.tags[tagname] = ICCP.XYZType()
(profile.tags[tagname].X,
profile.tags[tagname].Y,
profile.tags[tagname].Z) = X, Y, Z
# Profile class
profile.profileClass = profile_class
# Technology type
if tech:
profile.tags.tech = ICCP.SignatureType("sig \0\0\0\0" +
tech,
"tech")
# Colorimetric intent image state
if ciis:
profile.tags.ciis = ICCP.SignatureType("sig \0\0\0\0" +
ciis,
"ciis")
profile.setDescription(os.path.splitext(os.path.basename(path))[0])
profile.calculateID()
try:
profile.write(path)
except Exception, exception:
return exception
def setup_language(self):
BaseFrame.setup_language(self)
items = []
for item in self.trc_ctrl.Items:
items.append(lang.getstr(item))
self.trc_ctrl.SetItems(items)
self.trc_ctrl.SetSelection(0)
self.trc_gamma_types_ab = {0: "g", 1: "G"}
self.trc_gamma_types_ba = {"g": 0, "G": 1}
self.trc_gamma_type_ctrl.SetItems([lang.getstr("trc.type.relative"),
lang.getstr("trc.type.absolute")])
self.profile_classes = OrderedDict(get_mapping(ICCP.profileclass.items(),
["mntr", "scnr"]))
self.profile_class_ctrl.SetItems(self.profile_classes.values())
self.profile_class_ctrl.SetSelection(0)
self.tech = OrderedDict(get_mapping([("", "unspecified")] +
ICCP.tech.items(),
["", "fscn", "dcam", "rscn", "vidm",
"vidc", "pjtv", "CRT ", "PMD ",
"AMD ", "mpfs", "dmpc", "dcpj"]))
self.tech_ctrl.SetItems(self.tech.values())
self.tech_ctrl.SetSelection(0)
self.ciis = OrderedDict(get_mapping([("", "unspecified")] +
ICCP.ciis.items(),
["", "scoe", "sape", "fpce"]))
self.ciis_ctrl.SetItems(self.ciis.values())
self.ciis_ctrl.SetSelection(0)
def trc_ctrl_handler(self, event=None):
if not self._updating_ctrls:
self.preset_ctrl.SetSelection(0)
i = self.trc_ctrl.GetSelection()
if i == 5:
# BT.1886
setcfg("synthprofile.trc_gamma", 2.4)
setcfg("synthprofile.trc_gamma_type", "G")
setcfg("synthprofile.trc_output_offset", 0.0)
if not self._updating_ctrls:
self.update_trc_controls()
def trc_gamma_type_ctrl_handler(self, event):
setcfg("synthprofile.trc_gamma_type",
self.trc_gamma_types_ab[self.trc_gamma_type_ctrl.GetSelection()])
self.update_trc_control()
def trc_gamma_ctrl_handler(self, event):
if not self._updating_ctrls:
try:
v = float(self.trc_gamma_ctrl.GetValue().replace(",", "."))
if (v < config.valid_ranges["gamma"][0] or
v > config.valid_ranges["gamma"][1]):
raise ValueError()
except ValueError:
wx.Bell()
self.trc_gamma_ctrl.SetValue(str(getcfg("synthprofile.trc_gamma")))
else:
if str(v) != self.trc_gamma_ctrl.GetValue():
self.trc_gamma_ctrl.SetValue(str(v))
setcfg("synthprofile.trc_gamma",
float(self.trc_gamma_ctrl.GetValue()))
self.preset_ctrl.SetSelection(0)
self.update_trc_control()
event.Skip()
def update_controls(self):
""" Update controls with values from the configuration """
self.luminance_ctrl.SetValue(getcfg("synthprofile.luminance"))
self.black_luminance_ctrl.SetValue(getcfg("synthprofile.black_luminance"))
self.update_trc_control()
self.update_trc_controls()
def update_trc_control(self):
if self.trc_ctrl.GetSelection() in (0, 5):
if (getcfg("synthprofile.trc_gamma_type") == "G" and
getcfg("synthprofile.trc_output_offset") == 0 and
getcfg("synthprofile.trc_gamma") == 2.4):
self.trc_ctrl.SetSelection(5) # BT.1886
else:
self.trc_ctrl.SetSelection(0) # Gamma
def update_trc_controls(self):
i = self.trc_ctrl.GetSelection()
self.panel.Freeze()
self.trc_gamma_label.Show(i in (0, 5))
self.trc_gamma_ctrl.SetValue(str(getcfg("synthprofile.trc_gamma")))
self.trc_gamma_ctrl.Show(i in (0, 5))
self.trc_gamma_type_ctrl.SetSelection(self.trc_gamma_types_ba[getcfg("synthprofile.trc_gamma_type")])
self.panel.GetSizer().Layout()
self.panel.Thaw()
if i in (0, 5, 7, 8):
# Gamma, BT.1886, SMPTE 2084 (PQ)
outoffset = int(getcfg("synthprofile.trc_output_offset") * 100)
else:
outoffset = 100
self.black_output_offset_ctrl.SetValue(outoffset)
self.black_output_offset_intctrl.SetValue(outoffset)
self.lut3d_hdr_minmll_ctrl.SetValue(getcfg("3dlut.hdr_minmll"))
self.lut3d_hdr_maxmll_ctrl.SetValue(getcfg("3dlut.hdr_maxmll"))
setcfg("3dlut.hdr_peak_luminance", getcfg("synthprofile.luminance"))
self.lut3d_hdr_update_diffuse_white()
self.lut3d_hdr_ambient_luminance_ctrl.SetValue(getcfg("3dlut.hdr_ambient_luminance"))
self.lut3d_hdr_update_system_gamma()
self.lut3d_hdr_minmll_label.Show(i in (7, 8)) # SMPTE 2084 (PQ)
self.lut3d_hdr_minmll_ctrl.Show(i in (7, 8)) # SMPTE 2084 (PQ)
self.lut3d_hdr_minmll_ctrl_label.Show(i in (7, 8)) # SMPTE 2084 (PQ)
self.lut3d_hdr_maxmll_label.Show(i == 8) # SMPTE 2084 (PQ)
self.lut3d_hdr_maxmll_ctrl.Show(i == 8) # SMPTE 2084 (PQ)
self.lut3d_hdr_maxmll_ctrl_label.Show(i == 8) # SMPTE 2084 (PQ)
self.lut3d_hdr_diffuse_white_label.Show(i == 8) # SMPTE 2084 (PQ)
self.lut3d_hdr_diffuse_white_txt.Show(i == 8) # SMPTE 2084 (PQ)
self.lut3d_hdr_diffuse_white_txt_label.Show(i == 8) # SMPTE 2084 (PQ)
self.lut3d_hdr_ambient_luminance_label.Show(i == 2) # HLG
self.lut3d_hdr_ambient_luminance_ctrl.Show(i == 2) # HLG
self.lut3d_hdr_ambient_luminance_ctrl_label.Show(i == 2) # HLG
self.lut3d_hdr_system_gamma_label.Show(i == 2) # HLG
self.lut3d_hdr_system_gamma_txt.Show(i == 2) # HLG
self.black_luminance_ctrl_handler(True)
if i in (4, 6):
# Rec 709 or SMPTE 240M
# Match Adobe 'video' profiles
self.profile_class_ctrl.SetStringSelection(self.profile_classes["scnr"])
self.tech_ctrl.SetStringSelection(self.tech["vidc"])
self.ciis_ctrl.SetStringSelection(self.ciis["fpce"])
elif self.profile_class_ctrl.GetStringSelection() == self.profile_classes["scnr"]:
# If 'input' profile, reset class/tech/colorimetric intent image state
self.profile_class_ctrl.SetStringSelection(self.profile_classes["mntr"])
self.tech_ctrl.SetStringSelection(self.tech[""])
self.ciis_ctrl.SetStringSelection(self.ciis[""])
def white_XYZ_ctrl_handler(self, event):
self.parse_XYZ("white")
self.parse_xy()
def white_xy_ctrl_handler(self, event):
self.parse_xy("white")
def get_mapping(mapping, keys):
return sorted([(k, lang.getstr(v.lower().replace(" ", "_"))) for k, v in
filter(lambda item: item[0] in keys, mapping)],
key=lambda item: item[0])
def main():
config.initcfg("synthprofile")
lang.init()
lang.update_defaults()
app = BaseApp(0)
app.TopWindow = SynthICCFrame()
if sys.platform == "darwin":
app.TopWindow.init_menubar()
wx.CallLater(1, _main, app)
app.MainLoop()
def _main(app):
app.TopWindow.listen()
app.process_argv(1)
app.TopWindow.Show()
if __name__ == "__main__":
main()
|