fast image operations
Diffstat (limited to 'benches/scaling.rs')
| -rw-r--r-- | benches/scaling.rs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/benches/scaling.rs b/benches/scaling.rs deleted file mode 100644 index 3a55a6a..0000000 --- a/benches/scaling.rs +++ /dev/null @@ -1,23 +0,0 @@ -#![feature(generic_const_exprs)] -#![allow(incomplete_features)] -use fimg::{Image, scale::*}; - -macro_rules! bench { - ($([$a: ident, $alg:ident]),+ $(,)?) => { - $(fn $a() { - let img: Image<_, 3> = Image::open("tdata/cat.png"); - iai::black_box(img.scale::<$alg>(267, 178)); - })+ - - iai::main!($($a,)+); - }; -} -bench![ - [nearest, Nearest], - [bilinear, Bilinear], - [boxs, Box], - [lanczos3, Lanczos3], - [catmull, CatmullRom], - [mitchell, Mitchell], - [hamming, Hamming], -]; |