File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ directory.
2121Saving using Replicator Basic Writer
2222------------------------------------
2323
24+ .. note ::
25+ The BasicWriter is part of the Omniverse Replicator ecosystem and is specific to the default
26+ Isaac RTX renderer backend. Other renderer backends may require different save workflows.
27+
2428To save camera outputs, we use the basic write class from Omniverse Replicator. This class allows us to save the
2529images in a numpy format. For more information on the basic writer, please check the
2630`documentation <https://docs.omniverse.nvidia.com/extensions/latest/ext_replicator/writer_examples.html >`_.
Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ Changed
1919 ``camera.data.info[data_type] ``.
2020 - **TiledCamera users (old): ** access pattern ``camera.data.info[data_type] `` is unchanged.
2121
22+ * **Breaking: ** :meth: `~isaaclab.renderers.BaseRenderer.write_output ` has been replaced by
23+ :meth: `~isaaclab.renderers.BaseRenderer.read_output `. The new method receives the full
24+ :class: `~isaaclab.sensors.camera.CameraData ` instance and iterates output types internally.
25+ Custom renderer implementations must replace ``write_output(render_data, output_name, output_data) ``
26+ with ``read_output(render_data, camera_data) ``.
27+
2228Deprecated
2329^^^^^^^^^^
2430
Original file line number Diff line number Diff line change @@ -53,9 +53,6 @@ class CameraData:
5353 The format of the data is available in the `Replicator Documentation`_. For semantic-based data,
5454 this corresponds to the ``"data"`` key in the output of the sensor.
5555
56- Key iteration order is not guaranteed to match the order of entries in the camera configuration's
57- ``data_types`` list; index by name or iterate ``data_types`` and look up each key explicitly.
58-
5956 .. _Replicator Documentation: https://docs.omniverse.nvidia.com/prod_extensions/prod_extensions/ext_replicator/annotators_details.html#annotator-output
6057 """
6158
You can’t perform that action at this time.
0 commit comments