|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+haader
|
|
|
2
|
+======
|
|
|
3
|
+
|
|
|
4
|
+A tool to construct HDR-images from a series of photographs of the same scene
|
|
|
5
|
+with different exposures. It reads JPEG-files and parses the EXIF data to
|
|
|
6
|
+retrieve their exposure times. The sensor response function is estimated using a
|
|
|
7
|
+method which is similar to the one described by Debevec and Malik in 1997.
|
|
|
8
|
+
|
|
|
9
|
+([Paul E. Debevec and Jitendra Malik. "Recovering High Dynamic Range Radiance
|
|
|
10
|
+Maps from Photographs". In Proceedings of SIGGRAPH 97, Computer Graphics
|
|
|
11
|
+Proceedings, Annual Conference Series, pages 369–378,
|
|
|
12
|
+1997.](http://www.pauldebevec.com/Research/HDR/debevec-siggraph97.pdf))
|
|
|
13
|
+
|
|
|
14
|
+
|
|
|
15
|
+There are several interfaces available.
|
|
|
16
|
+
|
|
|
17
|
+## Command Line Interface
|
|
|
18
|
+
|
|
|
19
|
+To build the CLI, you will just need a C++ compiler as all dependencies are
|
|
|
20
|
+included:
|
|
|
21
|
+```sh
|
|
|
22
|
+# apt-get install build-essential
|
|
|
23
|
+```
|
|
|
24
|
+
|
|
|
25
|
+Build:
|
|
|
26
|
+```sh
|
|
|
27
|
+$ cd cli
|
|
|
28
|
+$ make
|
|
|
29
|
+```
|
|
|
30
|
+
|
|
|
31
|
+Run:
|
|
|
32
|
+```sh
|
|
|
33
|
+$ cd cli
|
|
|
34
|
+$ ./haader <image1.jpg> <image2.jpg> <image3.jpg> ...
|
|
|
35
|
+```
|
|
|
36
|
+
|
|
|
37
|
+## GTK Interface
|
|
|
38
|
+
|
|
|
39
|
+Needs GTK+3.0 and the corresponding development packages:
|
|
|
40
|
+```sh
|
|
|
41
|
+# apt-get install build-essential libgtk-3-0 libgtk-3-dev
|
|
|
42
|
+```
|
|
|
43
|
+
|
|
|
44
|
+Build and run:
|
|
|
45
|
+```sh
|
|
|
46
|
+$ cd gui_gtk
|
|
|
47
|
+$ make run
|
|
|
48
|
+```
|