Fix: update camera observation with env.step and Fixed the header fil…#97
Fix: update camera observation with env.step and Fixed the header fil…#97Ruihyw wants to merge 1 commit intoleggedrobotics:mainfrom
Conversation
…e import problem and the application problem in ros after version update
|
Hi @Ruihyw , this seems to be a bigger change where also the IsaacSim and IsaacLab version have been updated. Which version are you using? If you updated the code to the latest releases, we can adjust the README |
My Isaaclab uses the release version, which is v2.1.0 |
|
So the current code is written for IsaacSim 4.2 and corresponding IsaacLab version. If we want to merge your PR, we would have to update the entire code and make sure that everything still works. |
Description
Fixes an issue in IsaacSim where the camera observation (cam_position) does not update during environment steps. This leads to the planner always receiving the initial image as input, preventing meaningful path re-planning.
Motivation
In tasks that rely on visual input (such as path planning or navigation), the camera position needs to reflect the robot's movement. Previously, even though the robot moved correctly in the environment, the camera’s output remained static due to the missing update mechanism. This PR resolves that.
Dependencies
Type of change
Screenshots



Before
After
Robot moved but camera image stayed fixed Camera image now updates with robot pose
Checklist
I have tested this fix in simulation and confirmed camera output updates
I have run the pre-commit checks with ./formatter.sh
I have made corresponding changes to the documentation (if applicable)
My changes generate no new warnings