Skip to content

Optimize memory consumption of ResizeProcessor #642

@antonfirsov

Description

@antonfirsov

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.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions