onurxtasar commited on
Commit
8582fc2
·
verified ·
1 Parent(s): 63b537f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -10
README.md CHANGED
@@ -59,15 +59,16 @@ Example output:
59
  Example metadata:
60
  ```python
61
  {
62
- 'track': 'softness_control',
63
- 'light_energy': 1000,
64
- 'size': 2,
65
- 'theta': 30.0,
66
- 'phi': 0.0,
67
- 'r': 8.0,
68
- 'light_location': '4.0,0.0,6.928203105926514',
69
- 'samples': 512,
70
- 'resolution_x': 1024,
71
- 'resolution_y': 1024
 
72
  }
73
  ```
 
59
  Example metadata:
60
  ```python
61
  {
62
+ 'track': 'softness_control', # Which track the image belongs to
63
+ 'light_energy': 1000, # Energy of the area light
64
+ 'size': 2, # Size of the area light
65
+ 'theta': 30.0, # Polar coodinate of the area light
66
+ 'phi': 0.0, # Azimuthal coodinate of the area light
67
+ 'r': 8.0, # Radius of the sphere
68
+ 'light_location': '4.0,0.0,6.928203105926514', # Cartesian coordinate of the area light
69
+ 'samples': 512, # We use Cycle rendering engine in Blender when creating the dataset.
70
+ # This parameter shows # of samples used by Cycle when rendering the image.
71
+ 'resolution_x': 1024, # Width of the image.
72
+ 'resolution_y': 1024 # Height of the image.
73
  }
74
  ```