Dogway / Avisynth-Scripts

AviSynth+ 3.7.3+ Filters
GNU General Public License v3.0
92 stars 13 forks source link

ex_retinex()/SoftLimiter() - Add accumulated minmax stats #38

Closed Dogway closed 2 years ago

Dogway commented 2 years ago

For this I need to retrieve past variables within ScriptClip which is problematic, specially since array type doesn't have dynamic properties. Floats or Int do but executing two runtime environments is not performance friendly.

Storing accumulation in frame properties which I can call back at a later frame seems a possibility but didn't work out. I want to avoid writing to disk or using Clipboard plugin.

Dogway commented 2 years ago

Partially done in 6cee5e1ee1ef63bd843e209d1838076a49e3c164 via SceneStats. SoftLimiter() pending of update.

Dogway commented 2 years ago

Done SoftLimiter() in 31e19108f71aff66044f7d6698883a713d9b97d0. Closing