pub type opj_tile_info_t = opj_tile_info;Expand description
Index structure : information regarding tiles
Aliased Type§
#[repr(C)]pub struct opj_tile_info_t {Show 17 fields
pub thresh: *mut f64,
pub tileno: i32,
pub start_pos: i32,
pub end_header: i32,
pub end_pos: i32,
pub pw: [i32; 33],
pub ph: [i32; 33],
pub pdx: [i32; 33],
pub pdy: [i32; 33],
pub packet: *mut opj_packet_info,
pub numpix: i32,
pub distotile: f64,
pub marknum: i32,
pub marker: *mut opj_marker_info,
pub maxmarknum: i32,
pub num_tps: i32,
pub tp: *mut opj_tp_info,
}Fields§
§thresh: *mut f64value of thresh for each layer by tile cfr. Marcela
tileno: i32number of tile
start_pos: i32start position
end_header: i32end position of the header
end_pos: i32end position
pw: [i32; 33]precinct number for each resolution level (width)
ph: [i32; 33]precinct number for each resolution level (height)
pdx: [i32; 33]precinct size (in power of 2), in X for each resolution level
pdy: [i32; 33]precinct size (in power of 2), in Y for each resolution level
packet: *mut opj_packet_infoinformation concerning packets inside tile
numpix: i32number of pixels of the tile
distotile: f64distortion of the tile
marknum: i32number of markers
marker: *mut opj_marker_infolist of markers
maxmarknum: i32actual size of markers array
num_tps: i32number of tile parts
tp: *mut opj_tp_infoinformation concerning tile parts