Struct rawloader::decoders::Image
[−]
[src]
pub struct Image {
pub make: String,
pub model: String,
pub canonical_make: String,
pub canonical_model: String,
pub width: usize,
pub height: usize,
pub wb_coeffs: [f32; 4],
pub data: Box<[u16]>,
pub whitelevels: [i64; 4],
pub blacklevels: [i64; 4],
pub color_matrix: [i64; 12],
pub dcraw_filters: u32,
pub crops: [i64; 4],
}Fields
make: String
model: String
canonical_make: String
canonical_model: String
width: usize
height: usize
wb_coeffs: [f32; 4]
data: Box<[u16]>
whitelevels: [i64; 4]
blacklevels: [i64; 4]
color_matrix: [i64; 12]
dcraw_filters: u32
crops: [i64; 4]
Trait Implementations
impl Debug for Image[src]
impl Clone for Image[src]
fn clone(&self) -> Image
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more