Added overview of sets to README.
Browse files
README.md
CHANGED
@@ -19,4 +19,200 @@ task_categories:
|
|
19 |
- unconditional-image-generation
|
20 |
task_ids: []
|
21 |
viewer: false
|
22 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
- unconditional-image-generation
|
20 |
task_ids: []
|
21 |
viewer: false
|
22 |
+
---
|
23 |
+
|
24 |
+
|
25 |
+
_The Dataset Teaser is now enabled instead! Isn't this better?_
|
26 |
+
|
27 |
+
![preview of all texture sets](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/teaser.webp)
|
28 |
+
|
29 |
+
|
30 |
+
# TD 02: Urban Surface Textures
|
31 |
+
|
32 |
+
This dataset contains multi-photo texture captures in outdoor nature scenes — many focusing on the ground and the others are walls. Each set has different photos that showcase texture variety, making them ideal for training a domain-specific image generator!
|
33 |
+
|
34 |
+
Overall information about this dataset:
|
35 |
+
|
36 |
+
* **Format** — JPEG-XL, lossless RGB
|
37 |
+
* **Resolution** — 4032 × 2268
|
38 |
+
* **Device** — mobile camera
|
39 |
+
* **Technique** — hand-held
|
40 |
+
* **Orientation** — landscape
|
41 |
+
* **Author**: Alex J. Champandard
|
42 |
+
* **Configurations**: 4K, 2K (default), 1K
|
43 |
+
|
44 |
+
To load the medium- and high-resolution images of the dataset, you'll need to install `jxlpy` from [PyPI](https://pypi.org/project/jxlpy/) with `pip install jxlpy`:
|
45 |
+
|
46 |
+
```python
|
47 |
+
# Recommended use, JXL at high-quality.
|
48 |
+
from jxlpy import JXLImagePlugin
|
49 |
+
from datasets import load_dataset
|
50 |
+
d = load_dataset('texturedesign/td02_urban-surface-textures', 'JXL@4K')
|
51 |
+
|
52 |
+
print(len(d['train']), len(d['test']))
|
53 |
+
```
|
54 |
+
|
55 |
+
The lowest-resolution images are available as PNG with a regular installation of `pillow`:
|
56 |
+
|
57 |
+
```python
|
58 |
+
# Alternative use, PNG at low-quality.
|
59 |
+
from datasets import load_dataset
|
60 |
+
d = load_dataset('texturedesign/td02_urban-surface-textures', 'PNG@1K')
|
61 |
+
|
62 |
+
# EXAMPLE: Discard all other sets except Set #1.
|
63 |
+
dataset = dataset.filter(lambda s: s['set'] == 1)
|
64 |
+
# EXAMPLE: Only keep images with index 0 and 2.
|
65 |
+
dataset = dataset.select([0, 2])
|
66 |
+
```
|
67 |
+
|
68 |
+
Use built-in dataset `filter()` and `select()` to narrow down the loaded dataset for training, or to ease with development.
|
69 |
+
|
70 |
+
|
71 |
+
## Set #1: Interlocked Paving with Mulch
|
72 |
+
|
73 |
+
![preview of the files in Set #1](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set01.webp)
|
74 |
+
|
75 |
+
* **Description**:
|
76 |
+
- grey H-shaped tiles interlocked together as the base
|
77 |
+
- brown mulch made of woodchips on top
|
78 |
+
- diffuse lighting, cloudy day
|
79 |
+
* **Number of Photos**:
|
80 |
+
- 18 train
|
81 |
+
- 5 test
|
82 |
+
* **Size**: 222 Mb
|
83 |
+
|
84 |
+
|
85 |
+
## Set #2: Outdoor Parking Area
|
86 |
+
|
87 |
+
![preview of the files in Set #2](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set02.webp)
|
88 |
+
|
89 |
+
* **Description**:
|
90 |
+
- diamond shape concrete floor tiles
|
91 |
+
- grass growing in the middle part
|
92 |
+
- sunny day, shadows and sunlight
|
93 |
+
* **Number of Photos**:
|
94 |
+
- 19 train
|
95 |
+
- 6 test
|
96 |
+
* **Size**: 270 Mb
|
97 |
+
|
98 |
+
|
99 |
+
## Set #3: Red Brick Wall Cliché
|
100 |
+
|
101 |
+
![preview of the files in Set #3](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set03.webp)
|
102 |
+
|
103 |
+
* **Description**:
|
104 |
+
- red brick wall with dark grey mortar
|
105 |
+
- signs of weathering and black splashes
|
106 |
+
- cloudy day, diffuse lighting
|
107 |
+
* **Number of Photos**:
|
108 |
+
- 10 train
|
109 |
+
- 4 test
|
110 |
+
* **Size**: 100 Mb
|
111 |
+
|
112 |
+
|
113 |
+
## Set #4: Not Asphalt, Sparkling Bitumen
|
114 |
+
|
115 |
+
![preview of the files in Set #4](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set04.webp)
|
116 |
+
|
117 |
+
* **Description**:
|
118 |
+
- asphalt with sparkeling gravel sticking out
|
119 |
+
- sunny day, strong light from right
|
120 |
+
* **Number of Photos**:
|
121 |
+
- 5 train
|
122 |
+
- 2 test
|
123 |
+
* **Size**: 65 Mb
|
124 |
+
|
125 |
+
|
126 |
+
## Set #5: Under The Dallage? Oui.
|
127 |
+
|
128 |
+
![preview of the files in Set #5](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set05.webp)
|
129 |
+
|
130 |
+
* **Description**:
|
131 |
+
- grey floor tiles of different square and rectangular shape
|
132 |
+
- cloudy day, diffuse lighting
|
133 |
+
* **Number of Photos**:
|
134 |
+
- 11 train
|
135 |
+
- 4 test
|
136 |
+
* **Size**: 103 Mb
|
137 |
+
|
138 |
+
|
139 |
+
## Set #6: Cracked Road and Scattered Gravel
|
140 |
+
|
141 |
+
![preview of the files in Set #6](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set06.webp)
|
142 |
+
|
143 |
+
* **Description**:
|
144 |
+
- asphalt road with cracks at varying scales
|
145 |
+
- occasionally gravel scattered around
|
146 |
+
- sunny day, varied lighting and soft shadows
|
147 |
+
* **Number of Photos**:
|
148 |
+
- 27 train
|
149 |
+
- 7 test
|
150 |
+
* **Size**: 281 Mb
|
151 |
+
|
152 |
+
|
153 |
+
## Set #7: Funky Grey/Red Brick Wall
|
154 |
+
|
155 |
+
![preview of the files in Set #7](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set07.webp)
|
156 |
+
|
157 |
+
* **Description**:
|
158 |
+
- red brick wall with grey mortar
|
159 |
+
- cool weathering patterns on the bricks, cement marks
|
160 |
+
- diffuse light from above
|
161 |
+
* **Number of Photos**:
|
162 |
+
- 6 train
|
163 |
+
- 2 test
|
164 |
+
* **Size**: 52 Mb
|
165 |
+
|
166 |
+
|
167 |
+
## Set #8: Corrugated Metal Wall
|
168 |
+
|
169 |
+
![preview of the files in Set #6](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set08.webp)
|
170 |
+
|
171 |
+
* **Description**:
|
172 |
+
- corrugated metal wall used on a construction site
|
173 |
+
- no significant effects from lighting
|
174 |
+
* **Number of Photos**:
|
175 |
+
- 6 train
|
176 |
+
- 2 test
|
177 |
+
* **Size**: 37 Mb
|
178 |
+
|
179 |
+
|
180 |
+
## Set #9: Colorful Aligned Paving Stones
|
181 |
+
|
182 |
+
![preview of the files in Set #9](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set09.webp)
|
183 |
+
|
184 |
+
* **Description**:
|
185 |
+
- square or rectangular pavement stones with rounded corners
|
186 |
+
- variety of different colors, dark gaps between
|
187 |
+
- neutral lighting in the shade
|
188 |
+
* **Number of Photos**:
|
189 |
+
- 5 train
|
190 |
+
- 1 test
|
191 |
+
* **Size**: 46 Mb
|
192 |
+
|
193 |
+
|
194 |
+
## Set #10: Fancy Footpath Concrete
|
195 |
+
|
196 |
+
![preview of the files in Set #10](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set10.webp)
|
197 |
+
|
198 |
+
* **Description**:
|
199 |
+
- fancy-looking concrete path in the park
|
200 |
+
- long straight gaps between the tiles
|
201 |
+
- strong sunlight from the left side
|
202 |
+
* **Number of Photos**:
|
203 |
+
- 11 train
|
204 |
+
- 4 test
|
205 |
+
* **Size**: 137 Mb
|
206 |
+
|
207 |
+
|
208 |
+
## Set #11: Asphalt Slowly Turning Green
|
209 |
+
|
210 |
+
![preview of the files in Set #11](https://huggingface.co/datasets/texturedesign/td02_urban-surface-textures/resolve/main/docs/set11.webp)
|
211 |
+
|
212 |
+
* **Description**:
|
213 |
+
- dirty asphalt with darker patches
|
214 |
+
- cloudy day, diffuse lighting
|
215 |
+
* **Number of Photos**:
|
216 |
+
- 9 train
|
217 |
+
- 2 test
|
218 |
+
* **Size**: 95 Mb
|