presample_robot_pose
find_given_tasks(data_dir, activities=[])
Find all instance files, partial json and full template json of the given task under folder data_dir.
Returns:
| Type | Description |
|---|---|
List of dictionaries containing task info
|
name, path, template files, instance dir |
Source code in OmniGibson/omnigibson/sampling/presample_robot_pose.py
find_tasks_with_instances()
Find all tasks that have ..._instances directories under the directory SAMPLED_TASK_DIR.
The task instance structure is
scenes/
Returns:
| Type | Description |
|---|---|
List of dictionaries containing task info
|
name, path, template files, instance dir |
Source code in OmniGibson/omnigibson/sampling/presample_robot_pose.py
generate_robot_configs()
Generate robot configurations for all supported robot types. Each robot is placed at a remote location to avoid interfering with the scene.
Returns:
| Type | Description |
|---|---|
|
List of robot configuration dictionaries |
Source code in OmniGibson/omnigibson/sampling/presample_robot_pose.py
main()
Main function to process all tasks with instance directories.
Source code in OmniGibson/omnigibson/sampling/presample_robot_pose.py
process_task(task_info)
Process a single task: extract R1Pro pose, sample other robot poses, and update all files.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_info
|
Dict
|
Dictionary containing task information |
required |
Source code in OmniGibson/omnigibson/sampling/presample_robot_pose.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | |
sample_robot_poses(env, existing_r1pro_pose)
Sample valid poses for all supported robots (except R1Pro) in the current environment state.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
env
|
The OmniGibson environment already loaded and potentially reset to a specific state |
required | |
existing_r1pro_pose
|
Dict
|
The existing R1Pro pose dict with 'position' and 'orientation' |
required |
Returns:
| Type | Description |
|---|---|
Dict[str, List[Dict]]
|
Dictionary mapping robot names to list of pose dicts |