xiapi 0.1.4

High-level API bindings for XIMEA Cameras
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Roi represents a region of interest.
pub struct Roi {
    /// Offset from the left in the horizontal direction
    pub offset_x: u32,

    /// Offset from the top in the vertical direction
    pub offset_y: u32,

    /// Image width
    pub width: u32,

    /// Image height
    pub height: u32,
}