Hi. I have used Isaac Gym.
I want to get some image data from Camera of Isaac Sim. And I want to use these image data as observations of agents(where agents are jetbots).
So I wrote this code.
self.cameras = []
for i in range(self.num_jetbots):
prim_path = "/World/Jetbot" + str(i) + "/chassis/rgb_camera/jetbot_camera"
name = "jetbot_camera_" + str(i)
camera = Camera(
prim_path=prim_path,
name=name,
resolution=(256,256),
translation=np.array([0.0, 0.0, 0.04]),
orientation=rot_utils.euler_angles_to_quats(np.array([0, -0.5, 0]))
)
camera.initialize()
camera.add_motion_vectors_to_frame()
rep.orchestrator.stop()
self.cameras.append(camera)
My porpose is getting images from cameras of jetbots.
But I got Errors bellow…
2023-07-29 07:53:31 [13,692ms] [Warning] [omni.isaac.core.utils.nucleus] /persistent/app/omniverse/mountedDrives setting not found
2023-07-29 07:53:31 [13,692ms] [Warning] [omni.client.plugin] HTTP Client: provider_http: CC-493: Request through cache failed. Retrying without cache for http://omniverse-content-production.s3-us-west-2.amazonaws.com/.cloudfront.toml
2023-07-29 07:53:31 [13,692ms] [Warning] [omni.client.plugin] HTTP Client: omniclient: CC-873: Bypassing cache until the application is restarted
2023-07-29 07:53:31 [13,954ms] [Warning] [omni.client.plugin] HTTP Client: provider_http: CC-493: Request through cache failed. Retrying without cache for http://omniverse-content-production.s3-us-west-2.amazonaws.com/Assets/Isaac/2022.2.1/
cameras len 16
2023-07-29 07:53:32 [14,764ms] [Warning] [carb.flatcache.plugin] UsdRelationship /Render/RenderProduct_Replicator.orderedVars has multiple targets, which is not supported
2023-07-29 07:53:38 [20,626ms] [Error] [carb.graphics-vulkan.plugin] VkResult: ERROR_OUT_OF_DEVICE_MEMORY
2023-07-29 07:53:38 [20,626ms] [Error] [carb.graphics-vulkan.plugin] vkAllocateMemory failed for flags: 0.
2023-07-29 07:53:38 [20,626ms] [Error] [gpu.foundation.plugin] Unable to allocate buffer
2023-07-29 07:53:38 [20,626ms] [Error] [gpu.foundation.plugin] Buffer creation failed for the device: 0.
2023-07-29 07:53:38 [20,626ms] [Error] [gpu.foundation.plugin] Failed to update params for RenderOp 1155
2023-07-29 07:53:38 [20,626ms] [Error] [gpu.foundation.plugin] Failed to update params for RenderOp Cached PT ClearAll. Will not execute this or subsequent RenderGraph operations. Aborting RenderGraph execution
2023-07-29 07:53:38 [20,626ms] [Error] [carb.scenerenderer-rtx.plugin] Failed to execute RenderGraph on device 0. Error Code: 7
2023-07-29 07:53:41 [23,692ms] [Warning] [omni.client.plugin] Tick: authentication: Discovery(ws://localhost/omni/discovery): Error creating Api/Connection search: Not connected
/home/usr4/yamane/.local/share/ov/pkg/isaac_sim-2022.2.1/python.sh: line 41: 10074 Segmentation fault (core dumped) $python_exe "$@" $args
There was an error running python
Do you have any ideas to solve this problem?
Thanks!