#image #display #evcxr #jupyter #integration #rgb

evcxr_image

在 Evcxr Jupyter 中显示 image crate 的图像

2 个稳定版本

1.1.0 2020 年 12 月 25 日
1.0.0 2018 年 12 月 14 日

#6 in #evcxr

Apache-2.0

10KB
82 行代码(不包括注释)

Evcxr 图像

Evcxr Jupyter 和 image crate 的集成。允许在 Evcxr Jupyter 内核中显示图像。

目前支持所有每通道 8 位格式

示例用法

:dep image = "0.23"
:dep evcxr_image = "1.1"

use evcxr_image::ImageDisplay;

image::ImageBuffer::from_fn(256, 256, |x, y| {
    if (x as i32 - y as i32).abs() < 3 {
        image::Rgb([0, 0, 255])
    } else {
        image::Rgb([0, 0, 0])
    }
})

依赖项

~11MB
~49K SLoC