Replies: 1 comment 4 replies
-
|
Hi, I was able to reproduce and identify the root cause of this issue. Root CauseThe UJITSO geometry processor plugin does load in headless python mode (the full extension chain This explains why all your post-startup attempts to enable it didn't work -- by the time FixThe setting must be passed before the Kit app starts. Use the from isaacsim import SimulationApp
app = SimulationApp({
"headless": True,
"multi_gpu": False,
"max_gpu_count": 1,
"active_gpu": 0,
"extra_args": ["--/UJITSO/geometry=true"],
})The Why Your Previous Attempts Failed
To Your Questions
Let me know if this resolves the issue! |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
GitHub Discussion 카테고리 선택 기준:
"Q&A" 를 선택하세요. 버그 리포트가 아니라 공식 지원 방법을 묻는 질문이기 때문입니다.
카테고리 선택 후 아래 내용을 붙여넣으세요:
Title:
NuRec Headless Rendering — UJITSO Geometry Processor Not Loading in Python Mode (Isaac Sim 5.1.0)
Body:
Environment
nvcr.io/nvidia/isaac-sim:5.1.0)nvidia/PhysicalAI-Autonomous-Vehicles-NuRec(HuggingFace)Goal
Render NuRec scenes in headless python mode to extract frames from 4 cameras:
Problem
UJITSO geometry processor is not loading in headless python mode.
NuRec volume is not rendered — only blank or mesh-only images are produced.
Root Cause Found
libcarb.ujitso.processor.geometry.plugin.soexists inside theomni.hydra.rtxextension:/isaac-sim/extscache/omni.hydra.rtx-1.0.0+69cbf6ad.lx64.r/bin/carb.ujitso.processors.geometry/libcarb.ujitso.processor.geometry.plugin.so
However, none of the
.kitapp files in/isaac-sim/apps/referenceomni.hydra.rtxoromni.ujitso, so the processor is never registered in headless python mode.What I've Tried
1. OMNI_KIT_ARGS_EXTRA environment variable
Result: Setting readable as
Truebut processor still not found.2. Extension manager after app startup
Result: Extensions show as enabled but processor still not found.
3. Direct plugin loading via ctypes
Result: No effect.
Error Messages
[Warning] [omni.ujitso] No processor found for request
[Warning] [omni.hydra] GeometryStreaming : Failed to request geometry /World/volume/mesh/mesh 4
[Warning] [omni.hydra] GeometryStreaming : Failed to request geometry /World/mesh_ground/mesh 4
Questions
.kitapp file designed for NuRec headless rendering?Any guidance would be greatly appreciated. Thank you.
Beta Was this translation helpful? Give feedback.
All reactions