#[repr(i32)]pub enum POAImgFormat {
POA_RAW8 = 0,
POA_RAW16 = 1,
POA_RGB24 = 2,
POA_MONO8 = 3,
POA_END = -1,
}Variants§
POA_RAW8 = 0
< 8bit raw data, 1 pixel 1 byte, value range[0, 255]
POA_RAW16 = 1
< 16bit raw data, 1 pixel 2 bytes, value range[0, 65535]
POA_RGB24 = 2
< RGB888 color data, 1 pixel 3 bytes, value range[0, 255] (only color camera)
POA_MONO8 = 3
< 8bit monochrome data, convert the Bayer Filter Array to monochrome data. 1 pixel 1 byte, value range[0, 255] (only color camera)
POA_END = -1
Trait Implementations§
Source§impl Clone for _POAImgFormat
impl Clone for _POAImgFormat
Source§fn clone(&self) -> _POAImgFormat
fn clone(&self) -> _POAImgFormat
Returns a duplicate 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 _POAImgFormat
impl Debug for _POAImgFormat
Source§impl Hash for _POAImgFormat
impl Hash for _POAImgFormat
Source§impl PartialEq for _POAImgFormat
impl PartialEq for _POAImgFormat
impl Copy for _POAImgFormat
impl Eq for _POAImgFormat
impl StructuralPartialEq for _POAImgFormat
Auto Trait Implementations§
impl Freeze for _POAImgFormat
impl RefUnwindSafe for _POAImgFormat
impl Send for _POAImgFormat
impl Sync for _POAImgFormat
impl Unpin for _POAImgFormat
impl UnwindSafe for _POAImgFormat
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