pub trait Superres_SuperResolutionConst: AlgorithmTraitConst + Superres_FrameSourceConst {
fn as_raw_Superres_SuperResolution(&self) -> *const c_void;
fn get_scale(&self) -> Result<i32> { ... }
fn get_iterations(&self) -> Result<i32> { ... }
fn get_tau(&self) -> Result<f64> { ... }
fn get_lambda(&self) -> Result<f64> { ... }
fn get_alpha(&self) -> Result<f64> { ... }
fn get_kernel_size(&self) -> Result<i32> { ... }
fn get_blur_kernel_size(&self) -> Result<i32> { ... }
fn get_blur_sigma(&self) -> Result<f64> { ... }
fn get_temporal_area_radius(&self) -> Result<i32> { ... }
fn get_optical_flow(&self) -> Result<Ptr<dyn Superres_DenseOpticalFlowExt>> { ... }
}
Expand description
Base class for Super Resolution algorithms.
The class is only used to define the common interface for the whole family of Super Resolution algorithms.