-
Notifications
You must be signed in to change notification settings - Fork 16
/
input.cpp
314 lines (256 loc) · 10.7 KB
/
input.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
#include "hdrmerge.h"
#include <mutex>
#include <algorithm>
#include <unistd.h>
#include <libgen.h>
#include <limits.h>
#if defined(__APPLE__)
#include <mach-o/dyld.h>
#endif
#include <sys/stat.h>
#include <boost/filesystem.hpp>
#include <boost/format.hpp>
#include <exiv2/image.hpp>
#include <exiv2/easyaccess.hpp>
#include "rawspeed/RawSpeed/RawSpeed-API.h"
using namespace RawSpeed;
static std::unique_ptr<CameraMetaData> __metadata;
static std::mutex __metadata_mutex;
// platform specific function to get exe path
std::string getexepath() {
char result[PATH_MAX];
#if defined(_WIN32)
wchar_t wresult[MAX_PATH];
DWORD ret = GetModuleFileName(NULL, wresult, MAX_PATH);
std::wcstombs(result, wresult, MAX_PATH);
#elif defined(__APPLE__)
uint32_t len = PATH_MAX;
if (_NSGetExecutablePath(result, &len) != 0) {
result[0] = '\0';
} else {
// resolve symlinks, ., .. if possible
char *canonicalPath = realpath(result, NULL);
if (canonicalPath != NULL) {
strncpy(result, canonicalPath, len);
free(canonicalPath);
}
}
#else
ssize_t count = readlink("/proc/self/exe", result, PATH_MAX);
result[count] = '\0';
#endif
return result;
}
/**
* Find all images in an exposure series and check that some sensible
* base requirements are satisfied, i.e.
* - all images use the same ISO speed and aperture setting
* - the images were taken using manual focus and manual exposure mode
* - there are no duplicate exposures.
*/
void ExposureSeries::add(const std::string &fmt) {
bool success = false;
for (int exposure = 0; ; ++exposure) {
char filename[1024];
snprintf(filename, sizeof(filename), fmt.c_str(), exposure);
Exposure exp(filename);
if (access(filename, F_OK) != 0)
break;
if (exposure == 1 && strchr(fmt.c_str(), '%') == NULL)
break; /* Just one image -- stop */
success = true;
exposures.push_back(exp);
}
if (!success) {
/* Maybe the sequence starts at 1? */
for (int exposure = 1; ; ++exposure) {
char filename[1024];
snprintf(filename, sizeof(filename), fmt.c_str(), exposure);
Exposure exp(filename);
if (access(filename, F_OK) != 0)
break;
exposures.push_back(exp);
}
}
}
float exposureTime(float shutterSpeedValue) {
/* lifted from libexiv2 */
double tmp = std::exp(std::log(2.0) * shutterSpeedValue);
if (tmp > 1)
return 1.0f / ((int) (tmp + 0.5));
else
return (int) (1/tmp + 0.5);
}
void ExposureSeries::check() {
float isoSpeed = -1, aperture = -1;
for (size_t exposure=0; exposure<exposures.size(); ++exposure) {
Exposure &exp = exposures[exposure];
Exiv2::Image::AutoPtr image = Exiv2::ImageFactory::open(exp.filename);
if (image.get() == 0)
throw std::runtime_error("\"" + exp.filename + "\": could not open RAW file!");
image->readMetadata();
const Exiv2::ExifData &exifData = image->exifData();
Exiv2::ExifData::const_iterator it;
for (it = exifData.begin(); it != exifData.end(); ++it) {
std::string value = it->toString();
if (value.length() > 100) /* Ignore huge attributes */
continue;
/* Collect the remainder */
if (metadata.find(it->key()) != metadata.end()) {
std::string current = metadata[it->key()];
if (value == current)
continue;
metadata[it->key()] = current + std::string("; ") + value;
} else {
metadata[it->key()] = value;
}
}
it = exifData.findKey(Exiv2::ExifKey("Exif.Photo.ShutterSpeedValue"));
if (it != exifData.end()) {
exp.exposure = std::pow(2, -it->toFloat());
} else {
it = exifData.findKey(Exiv2::ExifKey("Exif.Photo.ExposureTime"));
if (it == exifData.end())
throw std::runtime_error("\"" + exp.filename + "\": could not extract the exposure time!");
exp.exposure = it->toFloat();
}
it = Exiv2::exposureTime(exifData);
if (it == exifData.end())
throw std::runtime_error("\"" + exp.filename + "\": could not extract the exposure time!");
exp.shown_exposure = it->toFloat();
/* Fail if the images use different ISO values */
it = Exiv2::isoSpeed(exifData);
if (it == exifData.end())
throw std::runtime_error("\"" + exp.filename + "\": could not extract the ISO speed!");
if (exposure == 0)
isoSpeed = it->toFloat();
else if (isoSpeed != it->toFloat())
throw std::runtime_error("\"" + exp.filename + "\": detected an ISO speed that is different from the other images!");
/* Fail if the images use different aperture settings */
it = Exiv2::fNumber(exifData);
if (it == exifData.end())
throw std::runtime_error("\"" + exp.filename + "\": could not extract the aperture setting!");
if (exposure == 0)
aperture = it->toFloat();
else if (aperture != it->toFloat())
throw std::runtime_error("\"" + exp.filename + "\": detected an aperture setting that is different from the other images!");
/* Check for exposure mode, possibly warn */
it = Exiv2::exposureMode(exifData);
if (it == exifData.end())
throw std::runtime_error("\"" + exp.filename + "\": could not extract the exposure mode!");
if (it->print(&exifData) != "Manual")
cerr << "Warning: image \"" << exp.filename << "\" was *not* taken in manual exposure mode!" << endl;
/* If this image was taken by a Canon camera, also check the focus mode and possibly warn */
it = exifData.findKey(Exiv2::ExifKey("Exif.CanonCs.FocusMode"));
if (it != exifData.end()) {
if (it->print(&exifData) != "Manual focus")
cerr << "Warning: image \"" << exp.filename << "\" was *not* taken in manual focus mode!" << endl;
}
}
std::sort(exposures.begin(), exposures.end(),
[](const Exposure &a, const Exposure &b) {
return a.exposure < b.exposure;
}
);
cout << "Found " << exposures.size() << " image" <<
(exposures.size() > 1 ? "s" : "");
cout << " [ISO " << isoSpeed << ", ";
if (aperture == 0)
cout << "f/unknown";
else
cout << "f/" << aperture;
cout << ", exposures times: ";
for (size_t i=0; i<exposures.size(); ++i) {
cout << exposures[i].toString();
if (i+1 < exposures.size())
cout << ", ";
}
cout << "]" << endl;
std::vector<Exposure>::iterator it = std::adjacent_find(exposures.begin(), exposures.end(),
[](const Exposure &a, const Exposure &b) {
return a.exposure == b.exposure;
});
if (it != exposures.end())
throw std::runtime_error((boost::format("Duplicate exposure time: %1%") % it->toString()).str());
cout << "Collected " << metadata.size() << " metadata entries." << endl;
}
bool fexists(const std::string& name) {
struct stat buffer;
return (stat (name.c_str(), &buffer) == 0);
}
void ExposureSeries::load() {
std::unique_ptr<CameraMetaData> metadata;
std::string exe_path = getexepath();
if (exe_path.empty())
throw std::runtime_error("Unable to read the path of the current binary.");
boost::filesystem::path path(exe_path);
std::string basedir = path.parent_path().string();
std::string candidate1 = "rawspeed/data/cameras.xml";
std::string candidate2 = basedir + "/" + candidate1;
std::string candidate3 = basedir + "/cameras.xml";
if (fexists(candidate1))
metadata.reset(new CameraMetaData(candidate1.c_str()));
else if (fexists(candidate2))
metadata.reset(new CameraMetaData(candidate2.c_str()));
else if (fexists(candidate3))
metadata.reset(new CameraMetaData(candidate3.c_str()));
else
throw std::runtime_error((boost::format("Unable to detect the path of "
"\"cameras.xml\" -- checked at \"%1%\", \"%2%\", and \"%3%\"")
% candidate1 % candidate2 % candidate3).str());
cout << "Loading raw image data ..";
cout.flush();
#pragma omp parallel for schedule(dynamic, 1)
for (int i=0; i<(int) exposures.size(); ++i) {
#ifdef _MSC_VER
wchar_t wresult[1024];
std::mbstowcs(wresult, exposures[i].filename.c_str(), 1024);
FileReader f(wresult);
#else
FileReader f((char *)exposures[i].filename.c_str());
#endif
std::unique_ptr<FileMap> map(f.readFile());
RawParser parser(map.get());
std::unique_ptr<RawDecoder> decoder(parser.getDecoder());
if (!decoder.get())
throw std::runtime_error((boost::format(
"Unable to decode RAW file \"%1%\"!") % exposures[i].filename).str());
decoder->failOnUnknown = true;
decoder->checkSupport(metadata.get());
/* Decode the RAW data and crop to the active image area */
decoder->decodeRaw();
decoder->decodeMetaData(metadata.get());
RawImage raw = decoder->mRaw;
if (raw->metadata.subsampling.x != 1 || raw->metadata.subsampling.y != 1)
throw std::runtime_error("Subsampled RAW images are currently not supported!");
if (raw->getDataType() != TYPE_USHORT16)
throw std::runtime_error("Only RAW data in 16-bit format is currently supported!");
if (!raw->isCFA)
throw std::runtime_error("Only sensors with a color filter array are currently supported!");
ColorFilterArray cfa = raw->cfa;
int width = raw->dim.x, height = raw->dim.y, pitch = raw->pitch / sizeof(uint16_t);
if (i == 0) {
this->width = width;
this->height = height;
this->blacklevel = raw->blackLevel;
this->whitepoint = raw->whitePoint;
this->filter = raw->cfa.getDcrawFilter();
}
uint16_t *data = (uint16_t *) raw->getData(0, 0);
uint16_t *image = new uint16_t[width*height];
for (int y=0; y<height; ++y)
memcpy(image+y*width, data+y*pitch, sizeof(uint16_t)*width);
exposures[i].image = image;
#pragma omp critical
{
cout << ".";
cout.flush();
}
}
cout << " done (" << width << "x" << height << ", using "
<< (width*height*sizeof(uint16_t) * exposures.size()) / (float) (1024*1024)
<< " MiB of memory)" << endl;
}
int rawspeed_get_number_of_processor_cores() {
return getProcessorCount();
}