...Although more features will be added in time, the initial focus is on very fast high-quality image resizing, including bicubic resizing (both upscale and downscale).
The performance of a typical bicubic upscale operation is typically in the order of 10 times faster than via the standard AWT mechanism using RenderingHints.VALUE_INTERPOLATION_BICUBIC.
The library depends on Aparapi (https://code.google.com/p/aparapi/). Any GPU supporting OpenCL should be supported (including low-end GPUs without double-precision fp support), and there is automatic fallback to pure java implementations for all operations in the event that there is no OpenCL support available.
...