image/
image.rs

1use plotlars::{Axis, Image, Plot};
2
3fn main() {
4    let axis = Axis::new().show_axis(false);
5
6    Image::builder()
7        .path("data/image.png")
8        .x_axis(&axis)
9        .y_axis(&axis)
10        .plot_title("Image Plot")
11        .build()
12        .plot();
13}