RegionOfInterest constructor

RegionOfInterest({
  1. int? x_offset,
  2. int? y_offset,
  3. int? height,
  4. int? width,
  5. bool? do_rectify,
})

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;