cleanup test a bit
This commit is contained in:
parent
928da82d24
commit
7c7ae29bf9
2 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
||||||
use ndarray as nd;
|
|
||||||
use image;
|
use image;
|
||||||
|
|
||||||
pub enum ColorMaps{
|
pub enum ColorMaps{
|
||||||
|
|
|
@ -28,7 +28,7 @@ fn main() {
|
||||||
|
|
||||||
let mut sw = Stopwatch::start_new();
|
let mut sw = Stopwatch::start_new();
|
||||||
|
|
||||||
let frame = image::open("/home/ruben/Documents/Projecten/2020/rust/lena_orig-s.png");
|
let frame = image::open("test.png");
|
||||||
|
|
||||||
|
|
||||||
// let vec: Vec<u8> = frame.data().to_vec();
|
// let vec: Vec<u8> = frame.data().to_vec();
|
||||||
|
@ -48,7 +48,7 @@ fn main() {
|
||||||
let i = ib.as_rgb8().unwrap().clone();
|
let i = ib.as_rgb8().unwrap().clone();
|
||||||
let hm = Some(heatmap::Heatmap::new(heatmap::ColorMaps::Plasma));
|
let hm = Some(heatmap::Heatmap::new(heatmap::ColorMaps::Plasma));
|
||||||
let image = haar.scan_image(i, &hm).unwrap().dynamic_img;
|
let image = haar.scan_image(i, &hm).unwrap().dynamic_img;
|
||||||
image.save("/home/ruben/Documents/Projecten/2020/rust/lena_orig-output.png");
|
image.save("test-output.png");
|
||||||
|
|
||||||
// let hm = heatmap::Heatmap::new(heatmap::ColorMaps::NipySpectral);
|
// let hm = heatmap::Heatmap::new(heatmap::ColorMaps::NipySpectral);
|
||||||
// let hm = heatmap::Heatmap::new(heatmap::ColorMaps::TraficLight);
|
// let hm = heatmap::Heatmap::new(heatmap::ColorMaps::TraficLight);
|
||||||
|
|
Loading…
Reference in a new issue