#color-space #color-conversion #color #xyz #format-conversion #lab #hsv

colorutils-rs

High performance utilities for color format handling and conversion

58 releases (6 breaking)

new 0.7.2 Oct 18, 2024
0.6.1 Oct 9, 2024
0.5.5 Jul 25, 2024

#323 in Video

Download history 50/week @ 2024-07-03 320/week @ 2024-07-10 826/week @ 2024-07-17 722/week @ 2024-07-24 460/week @ 2024-07-31 100/week @ 2024-08-07 56/week @ 2024-08-14 32/week @ 2024-08-21 20/week @ 2024-08-28 25/week @ 2024-09-04 76/week @ 2024-09-11 640/week @ 2024-09-18 288/week @ 2024-09-25 246/week @ 2024-10-02 735/week @ 2024-10-09 445/week @ 2024-10-16

1,936 downloads per month
Used in 5 crates (4 directly)

BSD-3-Clause OR Apache-2.0

765KB
19K SLoC

Rust utilities for color handling and conversion.

The goal is to provide support for common conversion and SIMD options for most common conversion path for high-performance

Available SIMD fast paths generally 5-10 times faster than naive implementations

Allows conversion between

  • Rgb/Rgba/Rgba1010102/Rgb565/RgbF16
  • HSL
  • HSV
  • CIE LAB
  • CIE LUV
  • CIE LCh
  • XYZ
  • Sigmoidal
  • Oklab
  • Oklch
  • Jzazbz
  • Jzczhz
  • lαβ (l-alpha-beta)
  • XYB

Performance

There are some prebuilt functions for ex.

srgb_to_lab(src_bytes, width * components, &mut lab_store, width * 3 * std::mem::size_of::<f32>() as u32, width, height);

Prebuilt solutions ~3-5 times faster than naive implementation. If your case fits that you prebuilt function. Speed increasing done with AVX, NEON and SSE, if you are disabled or not using CPU with this features then you won't receive any benefits.

Also, fma target feature for x86-64 is available.

Target feature at compile time +avx2 must be activated to properly compile avx2 instructions. This is an important step even when runtime dispatch are used.

This project is licensed under either of

  • BSD-3-Clause License (see LICENSE)
  • Apache License, Version 2.0 (see LICENSE)

at your option.

Dependencies

~2MB
~45K SLoC