修改SDR色准深色异常、修改保存结果深色模式异常
This commit is contained in:
@@ -271,7 +271,7 @@ def plot_gamut(self: "PQAutomationApp", results, coverage, test_type):
|
||||
# 左图:CIE 1931 xy
|
||||
# ============================================================
|
||||
try:
|
||||
bg_xy, bbox_xy = get_cie1931_background()
|
||||
bg_xy, bbox_xy = get_cie1931_background(mode="dark" if dark_mode else "light")
|
||||
_blit_background(ax_xy, bg_xy, bbox_xy)
|
||||
_style_axes(
|
||||
ax_xy,
|
||||
@@ -343,7 +343,7 @@ def plot_gamut(self: "PQAutomationApp", results, coverage, test_type):
|
||||
# 右图:CIE 1976 u'v'
|
||||
# ============================================================
|
||||
try:
|
||||
bg_uv, bbox_uv = get_cie1976_background()
|
||||
bg_uv, bbox_uv = get_cie1976_background(mode="dark" if dark_mode else "light")
|
||||
_blit_background(ax_uv, bg_uv, bbox_uv)
|
||||
_style_axes(
|
||||
ax_uv,
|
||||
|
||||
Reference in New Issue
Block a user