object_state_utils
get_reachability_sampling_context(objB, predicate, use_trav_map=True, warn_on_scene_mismatch=False)
Builds cached traversability / reachability data used for kinematic sampling checks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
objB
|
StatefulObject
|
Reference object used for sampling. |
required |
predicate
|
str
|
Predicate being sampled, e.g. "inside", "onTop", "under". |
required |
use_trav_map
|
bool
|
Whether to enable traversability-based reachability checks. |
True
|
warn_on_scene_mismatch
|
bool
|
Whether to log a warning if objB.scene is not traversable. |
False
|
Returns:
| Type | Description |
|---|---|
dict or None
|
Context dict if traversability checks are enabled, else None. |
Source code in OmniGibson/omnigibson/utils/object_state_utils.py
is_pose_reachable_for_predicate(pos, objB, predicate, reachability_context)
Checks whether sampled pose @pos satisfies robot-reachability constraints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pos
|
Array[float]
|
Candidate world-frame position (x, y, z). |
required |
objB
|
StatefulObject
|
Reference object used for sampling. |
required |
predicate
|
str
|
Predicate being sampled, e.g. "inside", "onTop", "under". |
required |
reachability_context
|
dict or None
|
Context returned by get_reachability_sampling_context. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if sampled pose passes reachability checks. |
Source code in OmniGibson/omnigibson/utils/object_state_utils.py
sample_cloth_on_rigid(obj, other, max_trials=40, z_offset=0.05, randomize_xy=True)
Samples the cloth object @obj on the rigid object @other
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
obj
|
StatefulObject
|
Object whose state should be sampled. e.g.: for sampling a bed sheet on a rack, @obj is the bed sheet |
required |
other
|
StatefulObject
|
Object who is the reference point for @obj's state. e.g.: for sampling a bed sheet on a rack, @other is the rack |
required |
max_trials
|
int
|
Number of attempts for sampling |
40
|
z_offset
|
float
|
Z-offset to apply to the sampled pose |
0.05
|
randomize_xy
|
bool
|
Whether to randomize the XY position of the sampled pose. If False, the center of @other will always be used. |
True
|
Returns:
| Type | Description |
|---|---|
bool
|
True if successfully sampled, else False |
Source code in OmniGibson/omnigibson/utils/object_state_utils.py
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | |
sample_kinematics(predicate, objA, objB, max_trials=None, z_offset=0.05, skip_falling=False, use_last_ditch_effort=False, use_trav_map=True)
Samples the given @predicate kinematic state for @objA with respect to @objB
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
predicate
|
str
|
Name of the predicate to sample, e.g.: "onTop" |
required |
objA
|
StatefulObject
|
Object whose state should be sampled. e.g.: for sampling a microwave on a cabinet, @objA is the microwave |
required |
objB
|
StatefulObject
|
Object who is the reference point for @objA's state. e.g.: for sampling a microwave on a cabinet, @objB is the cabinet |
required |
max_trials
|
int
|
Number of attempts for sampling |
None
|
z_offset
|
float
|
Z-offset to apply to the sampled pose |
0.05
|
skip_falling
|
bool
|
Whether to let @objA fall after its position is sampled or not |
False
|
use_last_ditch_effort
|
bool
|
Whether to use last-ditch effort to sample the kinematics if the first sampling attempt fails. This will place @objA at the center of @objB's AABB, offset in z direction such |
False
|
use_trav_map
|
bool
|
Whether to use the traversability map of the scene to check if the sampled position is traversable. |
True
|
Returns:
| Type | Description |
|---|---|
bool
|
True if successfully sampled, else False |
Source code in OmniGibson/omnigibson/utils/object_state_utils.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 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 364 365 366 367 368 369 370 371 372 373 | |