Tweak log-scaler for more detail
parent
f2f00dcc52
commit
62d08eaf85
|
@ -260,12 +260,13 @@ def ds_m4(
|
||||||
if log_scale:
|
if log_scale:
|
||||||
assert uppx, 'You must provide a `uppx` value to use log scaling!'
|
assert uppx, 'You must provide a `uppx` value to use log scaling!'
|
||||||
|
|
||||||
|
# scaler = 2**7 / (1 + math.log(uppx, 2))
|
||||||
scaler = round(
|
scaler = round(
|
||||||
max(
|
max(
|
||||||
# NOTE: found that a 16x px width brought greater
|
# NOTE: found that a 16x px width brought greater
|
||||||
# detail, likely due to dpi scaling?
|
# detail, likely due to dpi scaling?
|
||||||
# px_width=px_width * 16,
|
# px_width=px_width * 16,
|
||||||
2**6 / (1 + math.log(uppx, 2)),
|
2**7 / (1 + math.log(uppx, 2)),
|
||||||
1
|
1
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue