-
Notifications
You must be signed in to change notification settings - Fork 135
Description
Feature request
Feature description
Add a flag to the camera_info message which tell if an image should be rectified using a pinhole or spherical projection model.
When, e.g., using fisheye cameras, a pinhole projection model is not suitable. With FoVs of almost or even more than 180 degree, a different model is required.
This information is not available within the camera_info.
The distortion model must not be used for such information, since different projection models can be used for different kind of lenses/distortions.
Implementation considerations
For my specific use case, a simple flag (bool) would suffice to encode the required information.
I'm not sure though, if a enum (int) might be the better option, since there are more possible ways of projecting images.
(pinhole, cylindrical, spherical, ...)