Closed Selur closed 2 years ago
It's a known effect. nnedi3_rpow2 does have the same behavior.
Example how could be fixed:
clip = core.fcbi.FCBI(clip=clip)
clip = core.resize.Bicubic(clip=clip, width=clip.w, height=clip.h, src_top=-0.5, src_left=-0.5) # correct center shift
clip = core.resize.Bicubic(clip=clip, width=w, height=h) # undo resize
Thanks for clearing that up. 👍
Using:
this image shifts to the left.
Using:
this shifting becomes more noticeable. -> Did I miss something? Is this a know effect? A bug?