Dogway / Avisynth-Scripts

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

Blur(.6) #13

Closed kedaitinh12 closed 3 years ago

kedaitinh12 commented 3 years ago

I seen documents only blur(1) = removegrain(12) but here is blur(.6) from original ver. Why you replaced blur(.6) with RemoveGrain (12)??? https://github.com/Dogway/Avisynth-Scripts/blob/ccabc3d261a787e38f762b4976cc3e698f226880/EX%20mods/FrameRateConverter.avsi#L246

Dogway commented 3 years ago

Because there was no fast HBD alternative to blur(.6), the closest was removegrain(12). I can add some kernel that better matches blur(0.6) but it's not going to be as fast as removegrain though.

Dogway commented 3 years ago

Committed

kedaitinh12 commented 3 years ago

Thanks