Enum opencv::highgui::WindowFlags
source · #[repr(C)]
pub enum WindowFlags {
WINDOW_NORMAL,
WINDOW_AUTOSIZE,
WINDOW_OPENGL,
WINDOW_FREERATIO,
WINDOW_GUI_NORMAL,
}Expand description
Flags for cv::namedWindow
Variants§
WINDOW_NORMAL
the user can resize the window (no constraint) / also use to switch a fullscreen window to a normal size.
WINDOW_AUTOSIZE
the user cannot resize the window, the size is constrainted by the image displayed.
WINDOW_OPENGL
window with opengl support.
WINDOW_FREERATIO
the image expends as much as it can (no ratio constraint).
WINDOW_GUI_NORMAL
old fashious way
Trait Implementations§
source§impl Clone for WindowFlags
impl Clone for WindowFlags
source§fn clone(&self) -> WindowFlags
fn clone(&self) -> WindowFlags
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more