|
|
@ -20,17 +20,21 @@ use cache::Cache; |
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct PIHash<'a> {
|
|
|
|
cache: Option<Cache<'a>>
|
|
|
|
cache: Option<Cache<'a>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> PIHash<'a> {
|
|
|
|
/**
|
|
|
|
* Create a new pihash library, and initialize a cache of a path is passed. If none is passed then no cache is initialized or used with the library
|
|
|
|
* Create a new pihash library, and initialize a cache of a path is passed.
|
|
|
|
* If none is passed then no cache is initialized or used with the library
|
|
|
|
*/
|
|
|
|
pub fn new(cache_path: Option<&'a str>) -> PIHash<'a> {
|
|
|
|
match cache_path {
|
|
|
|
Some(path) => {
|
|
|
|
let cache = Cache { cache_dir: path, use_cache: true};
|
|
|
|
let cache = Cache {
|
|
|
|
cache_dir: path,
|
|
|
|
use_cache: true,
|
|
|
|
};
|
|
|
|
match cache.init() {
|
|
|
|
Ok(_) => PIHash { cache: Some(cache) },
|
|
|
|
Err(e) => {
|
|
|
@ -38,12 +42,16 @@ impl<'a> PIHash<'a> { |
|
|
|
PIHash { cache: None }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
None => PIHash { cache: None },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_perceptual_hash(&self, path: &Path, precision: &hash::Precision, hash_type: &hash::HashType) -> u64 {
|
|
|
|
pub fn get_perceptual_hash(&self,
|
|
|
|
path: &Path,
|
|
|
|
precision: &hash::Precision,
|
|
|
|
hash_type: &hash::HashType)
|
|
|
|
-> u64 {
|
|
|
|
hash::get_perceptual_hash(&path, &precision, &hash_type, &self.cache)
|
|
|
|
}
|
|
|
|
|
|
|
@ -172,7 +180,7 @@ fn to_hex_string(bytes: &[u8]) -> String { |
|
|
|
|
|
|
|
// Module for the tests
|
|
|
|
//
|
|
|
|
#[cfg(test)]
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
|
|
|
|
use std::fs;
|
|
|
@ -194,11 +202,11 @@ mod tests { |
|
|
|
Some(_) => {
|
|
|
|
if ext.unwrap() == "jpg" {
|
|
|
|
num_paths += 1;
|
|
|
|
println!("Is a image {}: {:?}", num_paths, orig_path) ;
|
|
|
|
println!("Is a image {}: {:?}", num_paths, orig_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
println!("Not an image: {:?}", orig_path) ;
|
|
|
|
println!("Not an image: {:?}", orig_path);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -221,14 +229,12 @@ mod tests { |
|
|
|
let mut hashes: [u64; 3] = [0; 3];
|
|
|
|
for index in 0..image_paths.len() {
|
|
|
|
let image_path = image_paths[index];
|
|
|
|
let calculated_hash = lib.get_perceptual_hash(&image_path,
|
|
|
|
&hash_precision,
|
|
|
|
&hash_type);
|
|
|
|
let calculated_hash = lib.get_perceptual_hash(&image_path, &hash_precision, &hash_type);
|
|
|
|
println!("Image hashes for [{}] expected: [{}] actual: [{}]",
|
|
|
|
image_path.to_str().unwrap(),
|
|
|
|
image_hashes[index],
|
|
|
|
calculated_hash);
|
|
|
|
assert_eq!(calculated_hash,image_hashes[index]);
|
|
|
|
assert_eq!(calculated_hash, image_hashes[index]);
|
|
|
|
hashes[index] = calculated_hash;
|
|
|
|
}
|
|
|
|
|
|
|
@ -258,9 +264,7 @@ mod tests { |
|
|
|
let sample_01_images: [&Path; 3] = [&Path::new("./test_images/sample_01_large.jpg"),
|
|
|
|
&Path::new("./test_images/sample_01_medium.jpg"),
|
|
|
|
&Path::new("./test_images/sample_01_small.jpg")];
|
|
|
|
let sample_01_hashes: [u64; 3] = [857051991849750,
|
|
|
|
857051991849750,
|
|
|
|
857051992374038];
|
|
|
|
let sample_01_hashes: [u64; 3] = [857051991849750, 857051991849750, 857051992374038];
|
|
|
|
test_imageset_hash(hash::HashType::AHash,
|
|
|
|
hash::Precision::Medium,
|
|
|
|
1u64,
|
|
|
@ -286,9 +290,8 @@ mod tests { |
|
|
|
let sample_03_images: [&Path; 3] = [&Path::new("./test_images/sample_03_large.jpg"),
|
|
|
|
&Path::new("./test_images/sample_03_medium.jpg"),
|
|
|
|
&Path::new("./test_images/sample_03_small.jpg")];
|
|
|
|
let sample_03_hashes: [u64; 3] = [135670932300497406,
|
|
|
|
135670932300497406,
|
|
|
|
135670932300497406];
|
|
|
|
let sample_03_hashes: [u64; 3] =
|
|
|
|
[135670932300497406, 135670932300497406, 135670932300497406];
|
|
|
|
test_imageset_hash(hash::HashType::AHash,
|
|
|
|
hash::Precision::Medium,
|
|
|
|
1u64,
|
|
|
@ -351,9 +354,8 @@ mod tests { |
|
|
|
let sample_03_images: [&Path; 3] = [&Path::new("./test_images/sample_03_large.jpg"),
|
|
|
|
&Path::new("./test_images/sample_03_medium.jpg"),
|
|
|
|
&Path::new("./test_images/sample_03_small.jpg")];
|
|
|
|
let sample_03_hashes: [u64; 3] = [262683193365159876,
|
|
|
|
225528496439353284,
|
|
|
|
225528496435158982];
|
|
|
|
let sample_03_hashes: [u64; 3] =
|
|
|
|
[262683193365159876, 225528496439353284, 225528496435158982];
|
|
|
|
test_imageset_hash(hash::HashType::DHash,
|
|
|
|
hash::Precision::Medium,
|
|
|
|
4u64,
|
|
|
@ -388,9 +390,7 @@ mod tests { |
|
|
|
let sample_01_images: [&Path; 3] = [&Path::new("./test_images/sample_01_large.jpg"),
|
|
|
|
&Path::new("./test_images/sample_01_medium.jpg"),
|
|
|
|
&Path::new("./test_images/sample_01_small.jpg")];
|
|
|
|
let sample_01_hashes: [u64; 3] = [72357778504597504,
|
|
|
|
72357778504597504,
|
|
|
|
72357778504597504];
|
|
|
|
let sample_01_hashes: [u64; 3] = [72357778504597504, 72357778504597504, 72357778504597504];
|
|
|
|
test_imageset_hash(hash::HashType::PHash,
|
|
|
|
hash::Precision::Medium,
|
|
|
|
0u64,
|
|
|
@ -452,11 +452,15 @@ mod tests { |
|
|
|
|
|
|
|
// Setup the caches to make sure we're good to properly bench
|
|
|
|
// All phashes so that the matricies are pulled from cache as well
|
|
|
|
lib.get_perceptual_hash(&Path::new("./test_images/sample_01_large.jpg"),&hash::Precision::Medium, &hash::HashType::PHash);
|
|
|
|
lib.get_perceptual_hash(&Path::new("./test_images/sample_01_large.jpg"),
|
|
|
|
&hash::Precision::Medium,
|
|
|
|
&hash::HashType::PHash);
|
|
|
|
|
|
|
|
bench.iter(|| {
|
|
|
|
// Sample_01 Bench
|
|
|
|
lib.get_perceptual_hash(&Path::new("./test_images/sample_01_large.jpg"), &hash::Precision::Medium, &hash::HashType::PHash);
|
|
|
|
lib.get_perceptual_hash(&Path::new("./test_images/sample_01_large.jpg"),
|
|
|
|
&hash::Precision::Medium,
|
|
|
|
&hash::HashType::PHash);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
@ -468,7 +472,9 @@ mod tests { |
|
|
|
|
|
|
|
bench.iter(|| {
|
|
|
|
// Sample_01 Bench
|
|
|
|
lib.get_perceptual_hash(&Path::new("./test_images/sample_01_large.jpg"), &hash::Precision::Medium, &hash::HashType::PHash);
|
|
|
|
lib.get_perceptual_hash(&Path::new("./test_images/sample_01_large.jpg"),
|
|
|
|
&hash::Precision::Medium,
|
|
|
|
&hash::HashType::PHash);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|