|
|
@@ -12,7 +12,7 @@ Proceedings, Annual Conference Series, pages 369–378,
|
|
12
|
12
|
1997.](http://www.pauldebevec.com/Research/HDR/debevec-siggraph97.pdf))
|
|
13
|
13
|
|
|
14
|
14
|
|
|
15
|
|
-There are several interfaces available.
|
|
|
15
|
+There are two interfaces available.
|
|
16
|
16
|
|
|
17
|
17
|
## Command Line Interface
|
|
18
|
18
|
|
|
|
@@ -34,6 +34,18 @@ $ cd cli
|
|
34
|
34
|
$ ./haader <image1.jpg> <image2.jpg> <image3.jpg> ...
|
|
35
|
35
|
```
|
|
36
|
36
|
|
|
|
37
|
+This will output several files if the reconstruction of the sensor response
|
|
|
38
|
+function was successful:
|
|
|
39
|
+
|
|
|
40
|
+* `expose_*.ppm`: Simulated exposures of the scene with different exposure
|
|
|
41
|
+ times
|
|
|
42
|
+* `log_image.ppm`: A logarithmic mapping of the HDR-image
|
|
|
43
|
+* `rf.csv`: The sensor response function as a simple table with two columns. The
|
|
|
44
|
+ first column contains the logarithmic luminance relative to the central
|
|
|
45
|
+ response (128). The second row contains the response value (0-255).
|
|
|
46
|
+* `irf.csv`: The inverse sensor response function as a simple table with two
|
|
|
47
|
+ columns.
|
|
|
48
|
+
|
|
37
|
49
|
## GTK Interface
|
|
38
|
50
|
|
|
39
|
51
|
Needs GTK+3.0 and the corresponding development packages:
|
|
|
@@ -46,3 +58,12 @@ Build and run:
|
|
46
|
58
|
$ cd gui_gtk
|
|
47
|
59
|
$ make run
|
|
48
|
60
|
```
|
|
|
61
|
+
|
|
|
62
|
+Click `Select files` to open multiple images of the same scene and start the
|
|
|
63
|
+reconstruction. Alternatively, it is possible to specify the images and exposure
|
|
|
64
|
+times with a simple two-column CSV file:
|
|
|
65
|
+```csv
|
|
|
66
|
+</absolute/image/path1.png>,<exposure time in seconds>
|
|
|
67
|
+</absolute/image/path2.png>,<exposure time in seconds>
|
|
|
68
|
+...
|
|
|
69
|
+```
|