-
-
Notifications
You must be signed in to change notification settings - Fork 887
Closed
Description
Currently we are using O(NewWidth * SourceHeight) memory for doing resize operations, however it's possible to do it consuming only O(NewWidth * KernelDiameter) memory, without significant negative effect on speed.
We need to implement a "sliding window" algorithm for this.
It will most likely fix issues like #597.
UPDATE
The issue is now part of the epic #733.
UPDATE 2
The ideas in #733 are abandoned now, we need to implement this with the current architecture.
JimBobSquarePants, victorkifer, andymac4182, SunGram, drewnoakes and 2 moreiamcarbon