Enum opencv::cudaimgproc::CUDA_DemosaicTypes
source · #[repr(C)]pub enum CUDA_DemosaicTypes {
COLOR_BayerBG2BGR_MHT = 256,
COLOR_BayerGB2BGR_MHT = 257,
COLOR_BayerRG2BGR_MHT = 258,
COLOR_BayerGR2BGR_MHT = 259,
COLOR_BayerBG2GRAY_MHT = 260,
COLOR_BayerGB2GRAY_MHT = 261,
COLOR_BayerRG2GRAY_MHT = 262,
COLOR_BayerGR2GRAY_MHT = 263,
}
Variants§
COLOR_BayerBG2BGR_MHT = 256
Bayer Demosaicing (Malvar, He, and Cutler)
COLOR_BayerGB2BGR_MHT = 257
Bayer Demosaicing (Malvar, He, and Cutler)
COLOR_BayerRG2BGR_MHT = 258
Bayer Demosaicing (Malvar, He, and Cutler)
COLOR_BayerGR2BGR_MHT = 259
Bayer Demosaicing (Malvar, He, and Cutler)
COLOR_BayerBG2GRAY_MHT = 260
Bayer Demosaicing (Malvar, He, and Cutler)
COLOR_BayerGB2GRAY_MHT = 261
Bayer Demosaicing (Malvar, He, and Cutler)
COLOR_BayerRG2GRAY_MHT = 262
Bayer Demosaicing (Malvar, He, and Cutler)
COLOR_BayerGR2GRAY_MHT = 263
Bayer Demosaicing (Malvar, He, and Cutler)
Trait Implementations§
source§impl Clone for CUDA_DemosaicTypes
impl Clone for CUDA_DemosaicTypes
source§fn clone(&self) -> CUDA_DemosaicTypes
fn clone(&self) -> CUDA_DemosaicTypes
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 moresource§impl Debug for CUDA_DemosaicTypes
impl Debug for CUDA_DemosaicTypes
source§impl From<CUDA_DemosaicTypes> for i32
impl From<CUDA_DemosaicTypes> for i32
source§fn from(v: CUDA_DemosaicTypes) -> Self
fn from(v: CUDA_DemosaicTypes) -> Self
Converts to this type from the input type.
source§impl PartialEq for CUDA_DemosaicTypes
impl PartialEq for CUDA_DemosaicTypes
source§fn eq(&self, other: &CUDA_DemosaicTypes) -> bool
fn eq(&self, other: &CUDA_DemosaicTypes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<i32> for CUDA_DemosaicTypes
impl TryFrom<i32> for CUDA_DemosaicTypes
impl Copy for CUDA_DemosaicTypes
impl Eq for CUDA_DemosaicTypes
impl StructuralPartialEq for CUDA_DemosaicTypes
Auto Trait Implementations§
impl Freeze for CUDA_DemosaicTypes
impl RefUnwindSafe for CUDA_DemosaicTypes
impl Send for CUDA_DemosaicTypes
impl Sync for CUDA_DemosaicTypes
impl Unpin for CUDA_DemosaicTypes
impl UnwindSafe for CUDA_DemosaicTypes
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