call method
CameraInfo
call(
{
- int? height,
- int? width,
- String? distortion_model,
- List<double>? D,
- List<double>? K,
- List<double>? R,
- List<double>? P,
- int? binning_x,
- int? binning_y,
- RegionOfInterest? roi,
})
Implementation
@override
CameraInfo call({
Header? header,
int? height,
int? width,
String? distortion_model,
List<double>? D,
List<double>? K,
List<double>? R,
List<double>? P,
int? binning_x,
int? binning_y,
RegionOfInterest? roi,
}) => CameraInfo(
header: header,
height: height,
width: width,
distortion_model: distortion_model,
D: D,
K: K,
R: R,
P: P,
binning_x: binning_x,
binning_y: binning_y,
roi: roi,
);