forked from rlk/envtools
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcubemapPacker.cpp
340 lines (257 loc) · 9.99 KB
/
cubemapPacker.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
#include <iostream>
#include <getopt.h>
#include <cstdlib>
#include <sstream>
#include <unistd.h>
#include <limits>
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <OpenImageIO/imageio.h>
#include <OpenImageIO/filter.h>
#include <OpenImageIO/imagebuf.h>
#include <OpenImageIO/imagebufalgo.h>
#include "Math"
#include "Cubemap"
#include "Color"
OIIO_NAMESPACE_USING
bool writeByChannel = false;
struct CubemapRGBA8 {
int _size;
uint8_t* _images[6];
void init(int size) {
_size = size;
for ( int i = 0; i<6; i++)
_images[i] = new uint8_t[size*size*4];
}
void pack( FILE* output) {
if (writeByChannel) {
// write by channel
for ( int i = 0; i < 6; i++ )
for ( int c = 0; c < 4; c++ )
for ( int b = 0; b < _size*_size; b++ ) {
uint8_t* p = &(_images[i][b*4]);
fwrite( &p[c], 1, 1 , output );
}
} else {
for ( int i = 0; i < 6; i++ )
fwrite( _images[i], _size*_size*4, 1 , output );
}
}
};
struct CubemapFloat {
int _size;
float* _images[6];
void init(int size) {
_size = size;
for ( int i = 0; i<6; i++)
_images[i] = new float[size*size*3];
}
void pack( FILE* output) {
if (writeByChannel) {
for ( int i = 0; i < 6; i++ )
for ( int c = 0; c < 3; c++ )
for ( int b = 0; b < _size*_size; b++ ) {
float* p = &(_images[i][b*3]);
fwrite( &p[c], 4, 1 , output );
}
} else {
for ( int i = 0; i < 6; i++ ) {
fwrite( _images[i], _size*_size*4*3, 1 , output );
}
}
}
};
class Packer
{
public:
std::map<int, CubemapRGBA8 > _cubemapsRGBM;
std::map<int, CubemapRGBA8 > _cubemapsRGBE;
std::map<int, CubemapRGBA8 > _cubemapsLUV;
std::map<int, CubemapFloat > _cubemapsFloat;
std::vector<int> _keys;
std::string _input;
std::string _outputDirectory;
bool _rgbm, _rgbe, _float, _luv;
int _maxLevel;
Packer(const std::string& input, int level, const std::string& outputDirectory ) {
_input = input;
_maxLevel = level;
_outputDirectory = outputDirectory;
_rgbe = _float = _rgbm = _luv = false;
}
void setRGBE( bool state ) { _rgbe = state; }
void setRGBM( bool state ) { _rgbm = state; }
void setFloat( bool state ) { _float = state; }
void setLUV( bool state ) { _luv = state; }
bool processCubemap( uint size, const std::string& name ) {
Cubemap cm;
bool loaded = cm.load(name);
if (!size)
size = cm.getSize();
_keys.push_back( size );
_cubemapsRGBE[size].init(size);
_cubemapsRGBM[size].init(size);
_cubemapsLUV[size].init(size);
_cubemapsFloat[size].init(size);
if ( !loaded ) {
return false;
}
uint cubemapSize = cm.getSize();
for ( int i = 0 ; i < 6; i++ ) {
ImageSpec specIn(cubemapSize, cubemapSize, cm.getSamplePerPixel(), TypeDesc::FLOAT);
ImageBuf src(specIn, cm.getImages().imageFace(i));
//std::cout << "processing " << str << " size " << specIn.width << "x" << specIn.height << std::endl;
ImageSpec specOutRGBE(specIn.width, specIn.height, 4, TypeDesc::UINT8 );
specOutRGBE.attribute("oiio:UnassociatedAlpha", 1);
ImageSpec specOutRGBM(specIn.width, specIn.height, 4, TypeDesc::UINT8 );
specOutRGBM.attribute("oiio:UnassociatedAlpha", 1);
ImageSpec specOutLUV(specIn.width, specIn.height, 4, TypeDesc::UINT8 );
specOutLUV.attribute("oiio:UnassociatedAlpha", 1);
ImageBuf dstRGBE(specOutRGBE, _cubemapsRGBE[size]._images[i]);
ImageBuf dstRGBM(specOutRGBM, _cubemapsRGBM[size]._images[i]);
ImageBuf dstLUV(specOutLUV, _cubemapsLUV[size]._images[i]);
ImageSpec specOutFloat(specIn.width, specIn.height, 3, TypeDesc::FLOAT );
ImageBuf dstFloat("/tmp/test_super_debug.tif", specOutFloat, _cubemapsFloat[size]._images[i]);
int width = specIn.width,
height = specIn.height;
ImageBuf::Iterator<float, float> iteratorSrc(src, 0, width, 0, height);
ImageBuf::Iterator<uint8_t, uint8_t> iteratorDstRGBE(dstRGBE, 0, width, 0, height);
ImageBuf::Iterator<uint8_t, uint8_t> iteratorDstRGBM(dstRGBM, 0, width, 0, height);
ImageBuf::Iterator<uint8_t, uint8_t> iteratorDstLUV(dstLUV, 0, width, 0, height);
ImageBuf::Iterator<float, float> iteratorDstFloat(dstFloat, 0, width, 0, height);
float result[3];
float inTmp[3];
float* in;
float biggest = 0.0;
for (;iteratorDstRGBE.valid();
iteratorSrc++,
iteratorDstRGBE++,
iteratorDstRGBM++,
iteratorDstLUV++,
iteratorDstFloat++) {
iteratorSrc.pos( iteratorDstRGBE.x(), iteratorDstRGBE.y(), iteratorDstRGBE.z());
float* inRaw = (float*)iteratorSrc.rawptr();
// we assume to have at least 3 channel in inputs, but it could be greyscale
if ( specIn.nchannels < 3 ) {
inTmp[0] = inRaw[0];
inTmp[1] = inRaw[0];
inTmp[2] = inRaw[0];
in = inTmp;
} else {
in = inRaw;
}
if ( _rgbe ) {
uint8_t* outRGBE = (uint8_t*)iteratorDstRGBE.rawptr();
encodeRGBE(in, outRGBE );
}
if ( _rgbm ) {
uint8_t* outRGBM = (uint8_t*)iteratorDstRGBM.rawptr();
encodeRGBM(in, outRGBM );
}
if ( _luv ) {
uint8_t* outLUV = (uint8_t*)iteratorDstLUV.rawptr();
encodeLUV(in, outLUV );
}
if ( _float ) {
float* outFloat = (float*)iteratorDstFloat.rawptr();
outFloat[0] = in[0];
outFloat[1] = in[1];
outFloat[2] = in[2];
}
}
}
return true;
}
void pack() {
char str[256];
// when using pattern options
// pack all miplevel
if ( _maxLevel > 0 ) {
for ( int level = 0 ; level < _maxLevel + 1; level++) {
int size = int( pow(2,_maxLevel-level) );
std::cout << "packing level " << level << " size " << size << std::endl;
int strSize = snprintf( str, 255, _input.c_str(), level );
str[strSize+1] = 0;
bool result = processCubemap( size, str );
if (!result)
std::cout << "can't read cubemap " << str << " for size " << size << ", skipped" << std::endl;
}
} else {
// when using pattern options
bool result = processCubemap( 0, _input );
if (!result)
std::cout << "error can't read file " << _input << std::endl;
}
if ( _rgbe ) {
FILE* outputRGBE = fopen( (_outputDirectory + "_rgbe.bin").c_str(), "wb");
for ( int i = 0; i < _keys.size(); i++ ) {
int key = _keys[i];
_cubemapsRGBE[key].pack(outputRGBE);
}
}
if ( _rgbm ) {
FILE* outputRGBM = fopen( (_outputDirectory + "_rgbm.bin").c_str(), "wb");
for ( int i = 0; i < _keys.size(); i++ ) {
int key = _keys[i];
_cubemapsRGBM[key].pack(outputRGBM);
}
}
if ( _luv ) {
FILE* outputLUV = fopen( (_outputDirectory + "_luv.bin").c_str(), "wb");
for ( int i = 0; i < _keys.size(); i++ ) {
int key = _keys[i];
_cubemapsLUV[key].pack(outputLUV);
}
}
if ( _float ) {
FILE* outputFloat = fopen( (_outputDirectory + "_float.bin").c_str() , "wb");
for ( int i = 0; i < _keys.size(); i++ ) {
int key = _keys[i];
_cubemapsFloat[key].pack(outputFloat);
}
}
}
};
static int usage(const std::string& name)
{
std::cerr << "Usage: " << name << " [-c write by channel] [-e encodingFlags] [-p toogle pattern] [-n nb level] input.tif outputdirectory" << std::endl;
std::cerr << "eg: " << name << " -e luv:rgbm:rgbe:float -p -n 5 input_%d.tif /tmp/test/" << std::endl;
std::cerr << "eg: " << name << "input.tif /tmp/test/" << std::endl;
return 1;
}
int main(int argc, char** argv) {
bool pattern = false;
int nb = 0;
int c;
writeByChannel = false;
std::string colorencoding = "luv:rgbm:rgbe:float";
while ((c = getopt(argc, argv, "ce:pn:")) != -1)
switch (c)
{
case 'e': colorencoding = std::string(optarg); break;
case 'c': writeByChannel = true; break;
case 'p': pattern = true; break;
case 'n': nb = atoi(optarg); break;
default: return usage(argv[0]);
}
std::string input, output;
if ( optind < argc-1 ) {
// generate specular ibl
input = std::string( argv[optind] );
output = std::string( argv[optind+1] );
Packer packer( input, nb, output );
if ( colorencoding.find("luv" ) != std::string::npos )
packer.setLUV( true );
if ( colorencoding.find("rgbe" ) != std::string::npos )
packer.setRGBE( true );
if ( colorencoding.find("rgbm" ) != std::string::npos )
packer.setRGBM( true );
if ( colorencoding.find("float" ) != std::string::npos )
packer.setFloat( true );
packer.pack();
} else {
return usage( argv[0] );
}
return 0;
}