pub struct Saliency { /* private fields */ }
Expand description
********************************* Saliency Base Class ***********************************
Trait Implementations§
source§impl AlgorithmTrait for Saliency
impl AlgorithmTrait for Saliency
source§impl AlgorithmTraitConst for Saliency
impl AlgorithmTraitConst for Saliency
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 write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>
fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>
👎Deprecated:
Note
Deprecated: ## Note
This alternative version of [write_with_name] function uses the following default values for its arguments: 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 Saliency
impl Boxed for Saliency
source§impl From<MotionSaliency> for Saliency
impl From<MotionSaliency> for Saliency
source§fn from(s: MotionSaliency) -> Self
fn from(s: MotionSaliency) -> Self
Converts to this type from the input type.
source§impl From<MotionSaliencyBinWangApr2014> for Saliency
impl From<MotionSaliencyBinWangApr2014> for Saliency
source§fn from(s: MotionSaliencyBinWangApr2014) -> Self
fn from(s: MotionSaliencyBinWangApr2014) -> Self
Converts to this type from the input type.
source§impl From<Objectness> for Saliency
impl From<Objectness> for Saliency
source§fn from(s: Objectness) -> Self
fn from(s: Objectness) -> Self
Converts to this type from the input type.
source§impl From<ObjectnessBING> for Saliency
impl From<ObjectnessBING> for Saliency
source§fn from(s: ObjectnessBING) -> Self
fn from(s: ObjectnessBING) -> Self
Converts to this type from the input type.
source§impl From<StaticSaliency> for Saliency
impl From<StaticSaliency> for Saliency
source§fn from(s: StaticSaliency) -> Self
fn from(s: StaticSaliency) -> Self
Converts to this type from the input type.
source§impl From<StaticSaliencyFineGrained> for Saliency
impl From<StaticSaliencyFineGrained> for Saliency
source§fn from(s: StaticSaliencyFineGrained) -> Self
fn from(s: StaticSaliencyFineGrained) -> Self
Converts to this type from the input type.
source§impl From<StaticSaliencySpectralResidual> for Saliency
impl From<StaticSaliencySpectralResidual> for Saliency
source§fn from(s: StaticSaliencySpectralResidual) -> Self
fn from(s: StaticSaliencySpectralResidual) -> Self
Converts to this type from the input type.
source§impl SaliencyTrait for Saliency
impl SaliencyTrait for Saliency
fn as_raw_mut_Saliency(&mut self) -> *mut c_void
source§fn compute_saliency(
&mut self,
image: &impl ToInputArray,
saliency_map: &mut impl ToOutputArray
) -> Result<bool>
fn compute_saliency( &mut self, image: &impl ToInputArray, saliency_map: &mut impl ToOutputArray ) -> Result<bool>
\brief Compute the saliency
\param image The image.
\param saliencyMap The computed saliency map.
\return true if the saliency map is computed, false otherwise
source§impl SaliencyTraitConst for Saliency
impl SaliencyTraitConst for Saliency
fn as_raw_Saliency(&self) -> *const c_void
source§impl TryFrom<Saliency> for MotionSaliency
impl TryFrom<Saliency> for MotionSaliency
source§impl TryFrom<Saliency> for Objectness
impl TryFrom<Saliency> for Objectness
source§impl TryFrom<Saliency> for ObjectnessBING
impl TryFrom<Saliency> for ObjectnessBING
source§impl TryFrom<Saliency> for StaticSaliency
impl TryFrom<Saliency> for StaticSaliency
source§impl TryFrom<Saliency> for StaticSaliencyFineGrained
impl TryFrom<Saliency> for StaticSaliencyFineGrained
impl Send for Saliency
Auto Trait Implementations§
impl RefUnwindSafe for Saliency
impl !Sync for Saliency
impl Unpin for Saliency
impl UnwindSafe for Saliency
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