- Remove method redefinition warnings by dropping additional types and keeping just construction helpers. Only types are
CameraCalibration[Mutable]
. - Consolidate type
CameraIntrinsic
- Created consolidated
CameraCalibration
type to replace various previous camera models (all doing about the same thing), - Also
CameraCalibrationMutable
andCameraCalibratonT
as the Union dispatch type. - Backward compatibility and deprecations for yakir12's Pinhole camera model.
- Backward compatibility and deprecations for Caesar.jl's PinholeCamera model.
- Backward compatibility and deprecations for SensorFeatureTracking CameraIntrinsics model.
- Backward compatibility and deprecations for CameraModelandParameters.
- Work in progress to consolidate CameraModelFull from JuliaRobotics, but some hangups on where to put CameraExtrinsics.
- Implement but not fully wired up to projections of
radialDistorion
functionality. - Deprecate
point2pixel(model, pt)
, useproject(model, pt[[1;3;2]])
instead. - Deprecate
pixel2ray(model, px)
, usebackproject(model, px)[[1;3;2]]
instead.