/// Roi represents a region of interest.
pubstructRoi{/// Offset from the left in the horizontal direction
puboffset_x:u32,
/// Offset from the top in the vertical direction
puboffset_y:u32,
/// Image width
pubwidth:u32,
/// Image height
pubheight:u32,
}