-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvmap.cpp
225 lines (190 loc) · 6.75 KB
/
envmap.cpp
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#include "Cubemap.h"
#include "CubemapMipMap.h"
#include "Image.h"
#include "Light.h"
#include "Spherical.h"
#include "envUtils.h"
#include "io.h"
#include "lightExtraction.h"
#include "package.h"
#include "utils.h"
#include <getopt.h>
#include <stdio.h>
#include <thread>
#include <getopt.h>
struct Options
{
int numSamples = 1024;
int cubemapSize = 256;
const char* inputFilename;
const char* distDir = "dist";
int thumbnailSize = 256;
int nbThreads = 0;
bool debug = false;
bool quiet = false;
unsigned short padding;
unsigned int padding2;
};
void printUsage()
{
const char* text =
"envmap is a tool to precompute environment for PBR rendering\n"
"usages:\n"
" envmap [options] panorama_env.hdr\n"
"\n"
"example\n"
" envmap -s 512 -n 4096 panorama_env.hdr\n"
"\n"
"Options:\n"
" -s [--ibl-size] to define the cubemap resolution computed, default 256\n"
" -n [--ibl-sample] number of sample to compute a texel, default 1024\n"
" -t [--thumbnail-size] width size of generated thumbnail, default 256, it will generate 256x128 thumbnail\n"
" -d a debug flag to write intermediate texture\n"
" -m [--no-threads] no multithreading, default is false\n";
printf("%s", text);
}
int parseArgument(Options& options, int argc, char** argv)
{
int opt;
int optionIndex = 0;
static const char* OPTSTR = "hdms:n:";
static const struct option OPTIONS[] = {
{"help", no_argument, nullptr, 'h'}, {"ibl-sample", required_argument, nullptr, 'n'},
{"ibl-size", required_argument, nullptr, 's'}, {"no-threads", no_argument, nullptr, 's'},
{"debug", no_argument, nullptr, 'd'}, {nullptr, 0, 0, 0} // termination of the option list
};
while ((opt = getopt_long(argc, argv, OPTSTR, OPTIONS, &optionIndex)) >= 0)
{
const char* arg = optarg ? optarg : "";
if (opt == -1)
break;
switch (opt)
{
default:
case 'h':
printUsage();
exit(0);
break;
case 'm':
options.nbThreads = 1;
break;
case 's':
options.cubemapSize = atoi(arg);
break;
case 'n':
options.numSamples = atoi(arg);
break;
case 'd':
options.debug = true;
break;
}
}
return optind;
}
int main(int argc, char** argv)
{
Options options;
int optionIndex = parseArgument(options, argc, argv);
int numArgs = argc - optionIndex;
if (numArgs < 1)
{
printUsage();
return 1;
}
options.inputFilename = argv[optionIndex];
if (numArgs > 1)
{
options.distDir = argv[optionIndex + 1];
}
printf("writing result to %s\n", options.distDir);
if (makeDirectory(options.distDir))
{
printf("can't create director %s\n", options.distDir);
return 1;
}
Image image;
const char* distDir = options.distDir;
Path path;
int loadImageResult = io::loadImage(image, options.inputFilename);
if (loadImageResult == 0)
{
if (!options.nbThreads)
{
options.nbThreads = (int)std::thread::hardware_concurrency();
}
printf("using %d threads\n", options.nbThreads);
// needs to be sure that the panorama is pow of 2
Cubemap cm;
envUtils::createCubemap(cm, options.cubemapSize);
envUtils::clampImage(image, 255);
Image thumbnail;
envUtils::resizeImage(thumbnail, image, options.thumbnailSize, options.thumbnailSize / 2);
envUtils::equirectangularToCubemap(cm, image, options.nbThreads);
if (options.debug)
{
io::writeCubemapDebug(distDir, "input", cm);
}
CubemapMipMap cmMipMap;
envUtils::createCubemapMipMap(cmMipMap, cm);
if (options.debug)
io::writeCubemapMipMapDebug(distDir, "mipmap", cmMipMap);
CubemapMipMap cmPrefilter;
envUtils::prefilterCubemapGGX(cmPrefilter, cmMipMap, options.numSamples, options.nbThreads);
Image equirectangular;
envUtils::packPrefilterCubemapToEquilateral(equirectangular, cmPrefilter, options.nbThreads);
if (options.debug)
{
createPath(path, distDir, "equirectangular.hdr");
io::writeImage_hdr(path, equirectangular);
}
CubemapMipMap cmPrefilterFixUp;
envUtils::resampleCubemap(cmPrefilterFixUp, cmPrefilter, options.nbThreads);
if (options.debug)
{
io::writeCubemapMipMapDebug(distDir, "prefilter", cmPrefilter);
}
Spherical spherical;
envUtils::computeSphericalHarmonicsFromCubemap(spherical, cm);
if (options.debug)
{
CubemapMipMap cmDecode;
io::readCubemapMipMap_luv(cmDecode, "test/prefilter.luv");
io::writeCubemapMipMapDebug(distDir, "prefilter-decode", cmDecode);
envUtils::freeCubemapMipMap(cmDecode);
}
Light light;
Image inputLightExtraction;
bool hasLight = true;
envUtils::resizeImage(inputLightExtraction, image, 1024, 512);
if (extractMainLight(light, inputLightExtraction) != 0)
{
printf("Did not find a main light from the environment\n");
hasLight = false;
}
envUtils::freeImage(inputLightExtraction);
pkg::Package package(distDir);
package.setSpherical(&spherical);
if (hasLight)
package.setMainLight(&light);
package.addThumbnail(thumbnail);
package.addPrefilterCubemap(cmPrefilterFixUp, pkg::ImageEncoding::luv);
package.addPrefilterEquirectangular(equirectangular, pkg::ImageEncoding::luv);
package.addBackground(cmPrefilter.levels[2], pkg::ImageEncoding::luv);
package.addBackground(cmPrefilter.levels[0], pkg::ImageEncoding::luv);
package.addBackground(cmPrefilter.levels[4], pkg::ImageEncoding::luv);
package.addPrefilterCubemap(cmPrefilterFixUp, pkg::ImageEncoding::rgbm);
package.addPrefilterEquirectangular(equirectangular, pkg::ImageEncoding::rgbm);
package.addBackground(cmPrefilter.levels[2], pkg::ImageEncoding::rgbm);
package.addBackground(cmPrefilter.levels[0], pkg::ImageEncoding::rgbm);
package.addBackground(cmPrefilter.levels[4], pkg::ImageEncoding::rgbm);
package.write();
envUtils::freeCubemapMipMap(cmPrefilterFixUp);
envUtils::freeCubemapMipMap(cmPrefilter);
envUtils::freeCubemapMipMap(cmMipMap);
envUtils::freeImage(equirectangular);
envUtils::freeImage(thumbnail);
envUtils::freeImage(image);
envUtils::freeCubemap(cm);
}
return loadImageResult;
}