File size: 3,890 Bytes
7296b54 5225b2f 69fe02f 7296b54 69fe02f 7296b54 69fe02f 7296b54 69fe02f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
---
license: cc-by-4.0
viewer: false
---
# Manipulation Objects Kitchen MJCF
We provide a collection of digital 3D mjcf assets intended for use in a simulated kitchen environment.
The assets are broadly divided into 2 categories: fixtures and objects. The fixture assets are comprised of interactable kitchen appliances such as stoves, microwaves, and ovens. The object assets consist of common kitchen objects such as saucepans and glass cups.
## Preview
### Objects

### Fixtures

## Objects
<details>
<summary>Expand to see a comprehensive list of provided object types</summary>
* Kettle
* Pot
* Soap dispenser
* Spray
* Cheese grater
* Syrup bottle
* Whisk
* Pitcher
* Lettuce
* Tongs
* Ice cube tray
* Shrimp
* Honey bottle
* Pizza cutter
* Colander
* Reamer
* Ice cube
* Jar
* Measuring cup
* Sandwich bread
* Strainer
* Sugar cube
* Cinnamon
* Cookie dough ball
* Cream cheese stick
* Digital scale
* Flour bag
* Hotdog bun
* Mayonnaise
* Mustard
* Oven tray
* Paprika
* Turmeric
* Pickle slice
* Tomato slice
* Turkey slice
* Straw
* Tupperware
* Chicken drumstick
* Glass cup
* Lemon wedge
* Marshmallow
* Oil and vinegar bottle
* Pancake
* Peeler
* Saucepan
* Saucepan with lid
* Saucepan lid
* Wooden spoon
* Aluminum foil
* Dish brush
* Pizza
* Kebab skewer
* Juice
* Salt and pepper shaker
* Basket
* Placemat
* Blender jug
</details>
### Directory Structure
The object folder of the repository is organized by object category. Each object category is stored as a zip. Within each zip, each category contains multiple unique model variations. Each individual model folder is self-contained with its mjcf definition, visual meshes, textures, and decomposed collision meshes.
```text
.
├── <category name>/ # e.g., aluminum foil, basket
│ ├── <model name>/ # e.g., AluminumFoil001, Basket026
│ │ ├── collision/ # Directory containing collision mesh(es)
│ │ │ ├── <mesh name> 0.obj
│ │ │ └── ... # Complex objects may have many decomposed collision pieces
│ │ ├── visual/ # Directory containing visual assets
│ │ │ ├── <model name>.obj # The main visual mesh
│ │ │ └── <texture>.png # Associated texture files
│ │ └── model.xml # The core MJCF XML file for this specific model
│ ├── <model name 2>/
│ └── ...
├── <category name 2>/
└── ...
```
## Fixtures
<details>
<summary>Expand to see a comprehensive list of provided fixture types:</summary>
* Blender
* Coffee machine
* Dishwasher
* Electric kettle
* Fridge
* Microwave
* Oven
* Stand mixer
* Stove
* Toaster
* Toaster oven
* Cabinet panel
</details>
### Directory Structure
The fixture subfolder is organized similarly to the object subfolder. Each fixture category is stored as a zip, and, within the zip, there are variations of the fixture category and self-contained assets.
```text
.
├── <fixture category>/ # e.g., dishwasher, coffee machines
│ ├── <model name>/ # e.g., CoffeeMachine001, CoffeeMachine036
│ │ ├── model.xml # The core MJCF XML file for this specific model
│ │ └── visuals/ # Directory containing visual assets
│ │ ├── <model name>.obj # Main visual mesh (if single piece)
│ │ ├── <part name>.obj # Component meshes for articulated parts (e.g., Body001.obj, Button001.obj)
│ │ └── <texture>.png # Associated texture files
│ ├── <model name 2>/
│ │ └── ...
│ └── ...
├── <fixture category 2>/
└── ...
``` |