Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -89,18 +89,6 @@ Each annotation file contains a list of frontier detections with the following s
|
|
| 89 |
|
| 90 |
## Usage
|
| 91 |
|
| 92 |
-
### Loading the Dataset
|
| 93 |
-
|
| 94 |
-
```python
|
| 95 |
-
from datasets import load_dataset
|
| 96 |
-
|
| 97 |
-
# Load the full dataset
|
| 98 |
-
dataset = load_dataset("leggedrobotics/wildos")
|
| 99 |
-
|
| 100 |
-
# Access specific splits
|
| 101 |
-
print(dataset)
|
| 102 |
-
```
|
| 103 |
-
|
| 104 |
### Loading Individual Files
|
| 105 |
|
| 106 |
```python
|
|
@@ -120,7 +108,7 @@ print(f"Number of frontiers: {len(annotations)}")
|
|
| 120 |
|
| 121 |
### Visualizing Annotations
|
| 122 |
|
| 123 |
-
|
| 124 |
|
| 125 |
```python
|
| 126 |
import os
|
|
@@ -177,13 +165,6 @@ original_path = metadata["0"] # e.g., "release_2024-11-03-07-57-34/hdr_front/hd
|
|
| 177 |
print(f"Original GrandTour path: {original_path}")
|
| 178 |
```
|
| 179 |
|
| 180 |
-
## Dataset Statistics
|
| 181 |
-
|
| 182 |
-
- **Total Images**: 390
|
| 183 |
-
- **Total Annotations**: 362 JSON files
|
| 184 |
-
- **Frontier Label**: `frontier`
|
| 185 |
-
- **Image Format**: PNG
|
| 186 |
-
|
| 187 |
## Related Resources
|
| 188 |
|
| 189 |
- **Project Page**: [WildOS: Open-Vocabulary Object Search in the Wild](https://leggedrobotics.github.io/wildos/)
|
|
|
|
| 89 |
|
| 90 |
## Usage
|
| 91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
### Loading Individual Files
|
| 93 |
|
| 94 |
```python
|
|
|
|
| 108 |
|
| 109 |
### Visualizing Annotations
|
| 110 |
|
| 111 |
+
Visualize frontier annotations on images:
|
| 112 |
|
| 113 |
```python
|
| 114 |
import os
|
|
|
|
| 165 |
print(f"Original GrandTour path: {original_path}")
|
| 166 |
```
|
| 167 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
## Related Resources
|
| 169 |
|
| 170 |
- **Project Page**: [WildOS: Open-Vocabulary Object Search in the Wild](https://leggedrobotics.github.io/wildos/)
|