#image #comparison #difference #nvidia #labs #bindings #error

nv-flip

High-Level bindings to Nvidia Labs's ꟻLIP image comparison and error visualization library

3 releases

0.1.2 Jul 16, 2023
0.1.1 Jun 4, 2023
0.1.0 Jun 4, 2023

#174 in Images

Download history 1565/week @ 2024-01-06 1247/week @ 2024-01-13 1376/week @ 2024-01-20 1594/week @ 2024-01-27 1490/week @ 2024-02-03 735/week @ 2024-02-10 963/week @ 2024-02-17 2804/week @ 2024-02-24 3138/week @ 2024-03-02 6454/week @ 2024-03-09 3939/week @ 2024-03-16 4304/week @ 2024-03-23 3380/week @ 2024-03-30 3187/week @ 2024-04-06 4549/week @ 2024-04-13 3185/week @ 2024-04-20

14,619 downloads per month

MIT OR Apache-2.0 OR Zlib

245KB
860 lines

nv-flip

bindings to Nvidia Labs's ꟻLIP image comparison and error visualization library.

This library allows you to visualize and reason about the human-noticable differences between rendered images. Especially when comparing images that are noisy or other small differences, FLIP's comparison can be more meaningful than a simple pixel-wise comparison.

comp

In order to keep a small dependency closure, this crate does not depend on image, but interop is simple.

Example

// First we load the "reference image". This is the image we want to compare against.
//
// We make sure to turn the image into RGB8 as FLIP doesn't deal with alpha.
let ref_image_data = image::open("../etc/tree-ref.png").unwrap().into_rgb8();
let ref_image = nv_flip::FlipImageRgb8::with_data(
    ref_image_data.width(),
    ref_image_data.height(),
    &ref_image_data
);

// We then load the "test image". This is the image we want to compare to the reference.
let test_image_data = image::open("../etc/tree-test.png").unwrap().into_rgb8();
let test_image = nv_flip::FlipImageRgb8::with_data(
    test_image_data.width(),
    test_image_data.height(),
    &test_image_data
);

// We now run the comparison. This will produce a "error map" that that is the per-pixel
// visual difference between the two images between 0 and 1.
//
// The last parameter is the number of pixels per degree of visual angle. This is used
// to determine the size of imperfections that can be seen. See the `pixels_per_degree`
// for more information. By default this value is 67.0.
let error_map = nv_flip::flip(ref_image, test_image, nv_flip::DEFAULT_PIXELS_PER_DEGREE);

// We can now visualize the error map using a LUT that maps the error value to a color.
let visualized = error_map.apply_color_lut(&nv_flip::magma_lut());

// Finally we can the final image into an `image` crate image and save it.
let image = image::RgbImage::from_raw(
    visualized.width(),
    visualized.height(),
    visualized.to_vec()
).unwrap();

// We can get statistics about the error map by using their "Pool" type,
// which is essentially a weighted histogram.
let mut pool = nv_flip::FlipPool::from_image(&error_map);

// These are the same statistics shown by the command line.
//
// The paper's writers recommend that, if you are to use a single number to
// represent the error, they recommend the mean.
println!("Mean: {}", pool.mean());
println!("Weighted median: {}", pool.get_percentile(0.5, true));
println!("1st weighted quartile: {}", pool.get_percentile(0.25, true));
println!("3rd weighted quartile: {}", pool.get_percentile(0.75, true));
println!("Min: {}", pool.min_value());
println!("Max: {}", pool.max_value());

The result of this example looks like this:

Reference ⠀⠀Test⠀⠀ ⠀Result⠀
comp comp comp

License

The binding and rust interop code is tri-licensed under MIT, Apache-2.0, and ZLib.

The ꟻLIP library itself is licensed under the BSD-3-Clause license.

The example images used are licensed under the Unsplash License.

License: MIT OR Apache-2.0 OR Zlib

Dependencies