Selur's Little Message Board

Full Version: EdgeFixer BoxBlur problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

I have long wondered why the "use Boxblur" option was there, which simply blurred the entire image.
I suspected that it shouldn't work like that, but I was afraid to ask. Big Grin

And now I've found out that it really doesn't work as it should.

Currently in Hybrid it works like this:
Code:
clip = ref = core.std.BoxBlur(clip=clip)
clip = core.edgefixer.Reference(ref=ref,clip=clip,left=3,top=2,right=3)

But it seems like it should work like this:
Code:
ref = core.std.BoxBlur(clip=clip)
clip = core.edgefixer.Reference(clip,ref,left=3,top=2,right=3)
LOL, will fix.
Uploaded a new dev which should hopefully fix the problem.

Cu Selur
Thanks!