Image scaling library in Rust
Rust image scale in different color spaces using SIMD and multithreading.
Supported NEON, SSE, AVX-2.
Colorspace
This library provides for you some conveniences to scale in different color spaces.
Prebuilt options for CIE L*a*b, CIE L*u*v, CIE L*c*h, Linear, Sigmoidal, Oklab, Jzazbz available.
Those transformations also very efficients.
Prefer downscale in linear colorspace or XYZ.
Up scaling might be done in LAB/LUB and simoidized components and also efficient in sRGB.
Have good f16 (binary float16) support.
Example integration with image crate
let img = open
.unwrap
.decode
.unwrap;
let dimensions = img.dimensions;
let mut bytes = Vecfrom;
let mut scaler = new;
scaler.set_threading_policy;
// ImageStore::<u8, 4> - (u8, 4) represents RGBA, (u8, 3) - RGB etc
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
let resized_image = resized.as_bytes;
Fastest paths using SIMD
Despite all implementation are fast, not all the paths are implemented using SIMD, so some paths are slower
~ - Partially implemented
| NEON | SSE | AVX | |
|---|---|---|---|
| RGBA (8 bit) | x | x | ~ |
| RGB (8 bit) | x | x | ~ |
| Plane (8 bit) | x | x | ~ |
| RGBA (8+ bit) | x | x | ~ |
| RGB (8+ bit) | x | x | ~ |
| Plane (8+ bit) | ~ | ~ | ~ |
| RGBA (f32) | x | x | x |
| RGB (f32) | x | x | ~ |
| Plane (f32) | x | x | ~ |
| RGBA (f16) | x | x | x |
| RGB (f16) | x | ~ | ~ |
| Plane (f16) | ~ | ~ | ~ |
Target features
fma, sse4.1, sse4.2, avx2, neon, f16c optional target features are available, enable it when compiling on supported platform to get full features
About f16
To enable full support of f16 half feature should be used, and f16c enabled when targeting x86 platforms.
For NEON f16 feature, target feature neon should be activated and target platform expected to be aarch64.
For aarch64 target runtime detection will be used for fp16full if available then the very fast paths is available.
Even when half feature activated but platform do not support or features not enabled for f16 speed will be slow
Performance
Example comparison with fast-image-resize time for downscale RGB 4928x3279 image in two times.
| Lanczos3 | SSE | AVX | NEON |
|---|---|---|---|
| pic-scale | 43.84 | 33.98 | 24.62 |
| fir sse | 45.36 | 36.05 | 36.69 |
Example comparison time for downscale RGBA 4928x3279 image in two times with premultiplying alpha.
| Lanczos3 | SSE | AVX | NEON |
|---|---|---|---|
| pic-scale | 68.51 | 47.33 | 37.17 |
| fir sse | 73.28 | 54.66 | 54.66 |
Example comparison time for downscale RGBA 4928x3279 image in two times without premultiplying alpha.
| Lanczos3 | SSE | AVX | NEON |
|---|---|---|---|
| pic-scale | 52.42 | 38.37 | 29.54 |
| fir sse | 51.89 | 39.82 | 44.54 |
Example comparison time for downscale RGBA 4928x3279 10 bit image in two times with premultiplying alpha.
| Lanczos3 | SSE | NEON |
|---|---|---|
| pic-scale | 156.90 | 62.44 |
| fir sse | 150.65 | 91.08 |
RGBA 4928x3279 10 bit downscale in two times without premultiplying alpha
| Lanczos3 | SSE | NEON |
|---|---|---|
| pic-scale | 156.90 | 45.09 |
| fir sse | 150.65 | 73.82 |
Example comparison time for downscale RGB 4000x6000 10 bit image in two times using NEON.
| Lanczos3 | SSE | NEON |
|---|---|---|
| pic-scale | 138.75 | 56.89 |
| fir sse | 125.85 | 100.36 |
Example in sRGB
In common, you should not downsize an image in sRGB colorspace, however if speed is more preferable than more proper scale you may omit linearizing
let mut scaler = new;
scaler.set_threading_policy;
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
Example in linear
At the moment only sRGB transfer function is supported. This is also good optimized path so it is reasonably fast.
let mut scaler = new;
scaler.set_threading_policy;
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
Example in CIE L*a*b
let mut scaler = new;
scaler.set_threading_policy;
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
Example in CIE L*u*v
let mut scaler = new;
scaler.set_threading_policy;
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
Example in CIE XYZ colorspace
let mut scaler = new;
scaler.set_threading_policy;
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
Example in Sigmoidal colorspace
let mut scaler = new;
scaler.set_threading_policy;
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
Example in LCh colorspace
let mut scaler = new;
scaler.set_threading_policy;
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
Example in Oklab colorspace
let mut scaler = new;
scaler.set_threading_policy;
let store =
from_slice.unwrap;
let resized = scaler.resize_rgba;
Resampling filters
Over 30 resampling filters is supported.
Bilinear
Nearest
Cubic
MitchellNetravalli
CatmullRom
Hermite
BSpline
Hann
Bicubic
Hamming
Hanning
Blackman
And others