RegionOfInterest constructor
Implementation
RegionOfInterest({
int? x_offset,
int? y_offset,
int? height,
int? width,
bool? do_rectify,
}):
this.x_offset = x_offset ?? 0,
this.y_offset = y_offset ?? 0,
this.height = height ?? 0,
this.width = width ?? 0,
this.do_rectify = do_rectify ?? false;