Skip to content

Commit

Permalink
minor changes, upgraded to version 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bean-mhm committed May 5, 2023
1 parent 4c1fd7d commit 9fc6fdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blim.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from utils import *


vt_version = '0.4.0'
vt_version = '0.4.1'


# Transform a 3D LUT
Expand Down
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def rgb_compress_highlights(inp):
white_mix_3 = rgb_path_to_white_mask(inp_max, min_exp = 0.0, max_exp = 6.9, mask_pow = 2.0)

# Reinhard
inp = inp * (1.0 / (inp_sum + 1.0))
inp = inp / (inp_sum + 1.0)

# The Reinhard transform scales the input uniformly. This might
# turn down bright colors extensively and make them look
Expand Down

0 comments on commit 9fc6fdd

Please sign in to comment.