- all tests passing

This commit is contained in:
w.pomp
2026-07-28 11:51:04 +02:00
parent 9f8764ee00
commit 0f315e66ca
5 changed files with 20 additions and 92 deletions
+1 -7
View File
@@ -112,7 +112,7 @@ where
mod tests {
use super::*;
use crate::julia_image;
use ndarray::{Ix1, Ix2, array};
use ndarray::{Ix1, array};
use tiffwrite::IJTiffFile;
#[test]
@@ -142,12 +142,6 @@ mod tests {
Ok(())
}
#[test]
fn gaussian_kernel_test2() -> Result<(), Box<dyn std::error::Error>> {
let k = gaussian_kernel::<Ix2>(&[60, 80], &[16.0, 16.0])?;
ndarray_npy::write_npy("/home/wim/tmp/kernel.npy", &k)?;
Ok(())
}
#[test]
fn fft_test() -> Result<(), Box<dyn std::error::Error>> {