forked from CIS565-Fall-2023/Project4-CUDA-Denoiser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.json
49 lines (49 loc) · 1.33 KB
/
Settings.json
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
{
"GLTF": {
"from file": true,
"path": "D:/OneDrive/GitHub/Upenn/CIS_5650/Project3-CUDA-Path-Tracer/scenes/cornell_box/bunny.gltf"
},
"RenderState": {
"camera": {
"aspect ratio": 1,
"screen height": 1200,
"focal length": 0.5,
"aperture size": 0,
"position": [0, 1, 1.9],
"lookAt": [0, 1, 0],
"view": [0, 0, -1],
"up": [0, 1, 0],
"fovy": 45
},
"iterations": 5000,
"traceDepth": 8,
"imageName": "output",
"antiAliasing": true,
"cache first bounce": false,
"dof": true,
"test normal": false,
"test intersect": false,
"test color":[1,1,1]
},
"Materials": [
{
"type": 1,
"emissiveFactor": [1, 1, 1],
"alphaCutoff": 0.5,
"doubleSided": false,
"pbrMetallicRoughness": {
"baseColorFactor": [1, 0, 0, 1],
"metallicFactor": 0.5,
"roughnessFactor": 0.3
}
}
],
"procedural": {
"on": false,
"scale": 16
},
"environmentMap": {
"path":"D:/OneDrive/GitHub/Upenn/CIS_5650/Project3-CUDA-Path-Tracer/scenes/envmap/rural_asphalt_road_4k.hdr",
"on": true
}
}