AutoGain is not saved

Issue #184 resolved
unius created an issue

Hi!

I also checked it on the last commit

Comments (5)

  1. Paul Matthijsse

    Not clear what your problem is. You’re talking about log tone mapping I suppose? Platform?

  2. unius reporter

    Yes. In “Log Tone Mapping” “Automatic” Gain not saved in .arp. For me, this patch solves the problem

    --- rtengine/procparams.cc.orig 2021-06-11 01:16:55.000000000 +0300
    +++ rtengine/procparams.cc      2021-06-11 01:16:55.000000000 +0300
    @@ -3546,7 +3546,7 @@
             if (RELEVANT_(logenc)) {
                 saveToKeyfile("LogEncoding", "Enabled", logenc.enabled, keyFile);
                 saveToKeyfile("LogEncoding", "Auto", logenc.autocompute, keyFile);
    -            saveToKeyfile("LogEncoding", "AutoGray", logenc.autogain, keyFile);
    +            saveToKeyfile("LogEncoding", "AutoGain", logenc.autogain, keyFile);
                 saveToKeyfile("LogEncoding", "Gain", logenc.gain, keyFile);
                 saveToKeyfile("LogEncoding", "TargetGray", logenc.targetGray, keyFile);
                 saveToKeyfile("LogEncoding", "BlackEv", logenc.blackEv, keyFile);
    

  3. Paul Matthijsse

    I see now what you mean. I guess this is due to a recent renaming of some sliders in this tool.

  4. Log in to comment