Browse Source

Expand README.md

Johannes Hofmann 7 years ago
parent
commit
d0ad86b397
1 changed files with 22 additions and 1 deletions
  1. 22
    1
      README.md

+ 22
- 1
README.md View File

12
 1997.](http://www.pauldebevec.com/Research/HDR/debevec-siggraph97.pdf))
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
 ## Command Line Interface
17
 ## Command Line Interface
18
 
18
 
34
 $ ./haader <image1.jpg> <image2.jpg> <image3.jpg> ...
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
 ## GTK Interface
49
 ## GTK Interface
38
 
50
 
39
 Needs GTK+3.0 and the corresponding development packages:
51
 Needs GTK+3.0 and the corresponding development packages:
46
 $ cd gui_gtk
58
 $ cd gui_gtk
47
 $ make run
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
+```