Struct opencv::img_hash::ImgHashBase
source · pub struct ImgHashBase { /* private fields */ }Expand description
The base class for image hash algorithms
Trait Implementations§
source§impl AlgorithmTrait for ImgHashBase
impl AlgorithmTrait for ImgHashBase
source§impl AlgorithmTraitConst for ImgHashBase
impl AlgorithmTraitConst for ImgHashBase
fn as_raw_Algorithm(&self) -> *const c_void
source§fn write(&self, fs: &mut FileStorage) -> Result<()>
fn write(&self, fs: &mut FileStorage) -> Result<()>
Stores algorithm parameters in a file storage
source§fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
Stores algorithm parameters in a file storage Read more
source§fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
@deprecated Read more
source§fn empty(&self) -> Result<bool>
fn empty(&self) -> Result<bool>
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
source§fn save(&self, filename: &str) -> Result<()>
fn save(&self, filename: &str) -> Result<()>
Saves the algorithm to a file.
In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
source§fn get_default_name(&self) -> Result<String>
fn get_default_name(&self) -> Result<String>
Returns the algorithm string identifier.
This string is used as top level xml/yml node tag when the object is saved to a file or string.
source§impl Boxed for ImgHashBase
impl Boxed for ImgHashBase
source§impl Debug for ImgHashBase
impl Debug for ImgHashBase
source§impl Drop for ImgHashBase
impl Drop for ImgHashBase
source§impl From<AverageHash> for ImgHashBase
impl From<AverageHash> for ImgHashBase
source§fn from(s: AverageHash) -> Self
fn from(s: AverageHash) -> Self
Converts to this type from the input type.
source§impl From<BlockMeanHash> for ImgHashBase
impl From<BlockMeanHash> for ImgHashBase
source§fn from(s: BlockMeanHash) -> Self
fn from(s: BlockMeanHash) -> Self
Converts to this type from the input type.
source§impl From<ColorMomentHash> for ImgHashBase
impl From<ColorMomentHash> for ImgHashBase
source§fn from(s: ColorMomentHash) -> Self
fn from(s: ColorMomentHash) -> Self
Converts to this type from the input type.
source§impl From<ImgHashBase> for Algorithm
impl From<ImgHashBase> for Algorithm
source§fn from(s: ImgHashBase) -> Self
fn from(s: ImgHashBase) -> Self
Converts to this type from the input type.
source§impl From<MarrHildrethHash> for ImgHashBase
impl From<MarrHildrethHash> for ImgHashBase
source§fn from(s: MarrHildrethHash) -> Self
fn from(s: MarrHildrethHash) -> Self
Converts to this type from the input type.
source§impl From<PHash> for ImgHashBase
impl From<PHash> for ImgHashBase
source§impl From<RadialVarianceHash> for ImgHashBase
impl From<RadialVarianceHash> for ImgHashBase
source§fn from(s: RadialVarianceHash) -> Self
fn from(s: RadialVarianceHash) -> Self
Converts to this type from the input type.
source§impl ImgHashBaseTrait for ImgHashBase
impl ImgHashBaseTrait for ImgHashBase
fn as_raw_mut_ImgHashBase(&mut self) -> *mut c_void
source§fn compute(
&mut self,
input_arr: &impl ToInputArray,
output_arr: &mut impl ToOutputArray
) -> Result<()>
fn compute( &mut self, input_arr: &impl ToInputArray, output_arr: &mut impl ToOutputArray ) -> Result<()>
Computes hash of the input image Read more
source§impl ImgHashBaseTraitConst for ImgHashBase
impl ImgHashBaseTraitConst for ImgHashBase
fn as_raw_ImgHashBase(&self) -> *const c_void
source§fn compare(
&self,
hash_one: &impl ToInputArray,
hash_two: &impl ToInputArray
) -> Result<f64>
fn compare( &self, hash_one: &impl ToInputArray, hash_two: &impl ToInputArray ) -> Result<f64>
Compare the hash value between inOne and inTwo Read more
impl Send for ImgHashBase
Auto Trait Implementations§
impl RefUnwindSafe for ImgHashBase
impl !Sync for ImgHashBase
impl Unpin for ImgHashBase
impl UnwindSafe for ImgHashBase
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more