initial commit
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
use descriptors::{Descriptor, Median};
|
||||
|
||||
pub mod descriptors;
|
||||
|
||||
fn main() {
|
||||
let desc = Median;
|
||||
let img0 = image::open("img/meowl.jpg").unwrap();
|
||||
let img1 = image::open("img/nyameowl.jpg").unwrap();
|
||||
let img2 = image::open("img/armmeowl.jpg").unwrap();
|
||||
println!("{:#x}", desc.describe(img0));
|
||||
println!("{:#x}", desc.describe(img1));
|
||||
println!("{:#x}", desc.describe(img2));
|
||||
}
|
||||
Reference in New Issue
Block a user