Adds option to change the clipping behavior for all Cameras and unifies the default
Description
This PR adds an option to define the clipping behavior for depth images generated by RayCasterCamera and Camera. In addition, it unifies the clipping behavior for the depth images of all camera implementations. Per default, all values exceeding the range are clipped to zero for both distance_to_image_plane and distance_to_camera depth images. Prev. RayCasterCamera clipped the values to the maximum value of the depth image, Camera did not clip them and had a different behavior for both types, and TiledCamera clipped the values to zero.
Needs PR #617 to be merged
Type of change
- Bug fix (non-breaking change which fixes an issue)
- New feature (non-breaking change which adds functionality)
Checklist
- [x] I have run the
pre-commitchecks with./isaaclab.sh --format - [x] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [x] I have added tests that prove my fix is effective or that my feature works
- [x] I have updated the changelog and the corresponding version in the extension's
config/extension.tomlfile - [x] I have added my name to the
CONTRIBUTORS.mdor my name already exists there
@Mayankm96 added test for all the other depth clipping formats, should be good to go now
@Mayankm96 quick ping, can we get that merged?