call method

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

Implementation

@override
RegionOfInterest call({
  int? x_offset,
  int? y_offset,
  int? height,
  int? width,
  bool? do_rectify,
}) => RegionOfInterest(
x_offset: x_offset,
y_offset: y_offset,
height: height,
width: width,
do_rectify: do_rectify,
);