├── .gitignore ├── .travis.yml ├── AUTHORS.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── INSTALL.md ├── LICENSE ├── LICENSE_icons ├── README.md ├── appimage └── appimage.sh ├── cmake ├── FindExiv2.cmake ├── FindLibRaw.cmake ├── FindQt5Transitional.cmake ├── Windows32.cmake └── Windows64.cmake ├── data ├── hdrmerge.desktop ├── hdrmerge_es.ts ├── images │ ├── draw-brush.png │ ├── draw-eraser.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ ├── logo.bmp │ ├── logo.png │ ├── logo.svg │ └── transform-move.png ├── resources.qrc ├── setup.nsi ├── translations.qrc.in └── winres.rc ├── scripts └── build-hdrmerge ├── src ├── AboutDialog.cpp ├── AboutDialog.hpp ├── Array2D.hpp ├── Bitmap.cpp ├── Bitmap.hpp ├── BoxBlur.cpp ├── BoxBlur.hpp ├── CFAPattern.hpp ├── DngFloatWriter.cpp ├── DngFloatWriter.hpp ├── DngPropertiesDialog.cpp ├── DngPropertiesDialog.hpp ├── DraggableScrollArea.cpp ├── DraggableScrollArea.hpp ├── EditableMask.cpp ├── EditableMask.hpp ├── ExifTransfer.cpp ├── ExifTransfer.hpp ├── FileSystem.cpp ├── FileSystem.hpp ├── Histogram.hpp ├── Image.cpp ├── Image.hpp ├── ImageIO.cpp ├── ImageIO.hpp ├── ImageStack.cpp ├── ImageStack.hpp ├── Launcher.cpp ├── Launcher.hpp ├── LoadOptionsDialog.cpp ├── LoadOptionsDialog.hpp ├── LoadSaveOptions.hpp ├── Log.hpp ├── MainWindow.cpp ├── MainWindow.hpp ├── PreviewWidget.cpp ├── PreviewWidget.hpp ├── ProgressIndicator.hpp ├── RawParameters.cpp ├── RawParameters.hpp ├── TiffDirectory.cpp ├── TiffDirectory.hpp ├── config.h.in └── main.cpp └── test ├── CMakeLists.txt ├── SampleImage.hpp ├── sample1.dng ├── sample1.png ├── sample2.dng ├── sample2.png ├── sample3.dng ├── sample3.png ├── sample4.png ├── testArray2D.cpp ├── testBitmap.cpp ├── testBoxBlur.cpp ├── testDngFloatWriter.cpp ├── testHistogram.cpp ├── testImageStack.cpp ├── testMain.cpp └── testMap.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/LICENSE_icons -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/README.md -------------------------------------------------------------------------------- /appimage/appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/appimage/appimage.sh -------------------------------------------------------------------------------- /cmake/FindExiv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/cmake/FindExiv2.cmake -------------------------------------------------------------------------------- /cmake/FindLibRaw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/cmake/FindLibRaw.cmake -------------------------------------------------------------------------------- /cmake/FindQt5Transitional.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/cmake/FindQt5Transitional.cmake -------------------------------------------------------------------------------- /cmake/Windows32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/cmake/Windows32.cmake -------------------------------------------------------------------------------- /cmake/Windows64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/cmake/Windows64.cmake -------------------------------------------------------------------------------- /data/hdrmerge.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/hdrmerge.desktop -------------------------------------------------------------------------------- /data/hdrmerge_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/hdrmerge_es.ts -------------------------------------------------------------------------------- /data/images/draw-brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/draw-brush.png -------------------------------------------------------------------------------- /data/images/draw-eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/draw-eraser.png -------------------------------------------------------------------------------- /data/images/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/icon.icns -------------------------------------------------------------------------------- /data/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/icon.ico -------------------------------------------------------------------------------- /data/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/icon.png -------------------------------------------------------------------------------- /data/images/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/logo.bmp -------------------------------------------------------------------------------- /data/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/logo.png -------------------------------------------------------------------------------- /data/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/logo.svg -------------------------------------------------------------------------------- /data/images/transform-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/images/transform-move.png -------------------------------------------------------------------------------- /data/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/resources.qrc -------------------------------------------------------------------------------- /data/setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/setup.nsi -------------------------------------------------------------------------------- /data/translations.qrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/translations.qrc.in -------------------------------------------------------------------------------- /data/winres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/data/winres.rc -------------------------------------------------------------------------------- /scripts/build-hdrmerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/scripts/build-hdrmerge -------------------------------------------------------------------------------- /src/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/AboutDialog.cpp -------------------------------------------------------------------------------- /src/AboutDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/AboutDialog.hpp -------------------------------------------------------------------------------- /src/Array2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Array2D.hpp -------------------------------------------------------------------------------- /src/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Bitmap.cpp -------------------------------------------------------------------------------- /src/Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Bitmap.hpp -------------------------------------------------------------------------------- /src/BoxBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/BoxBlur.cpp -------------------------------------------------------------------------------- /src/BoxBlur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/BoxBlur.hpp -------------------------------------------------------------------------------- /src/CFAPattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/CFAPattern.hpp -------------------------------------------------------------------------------- /src/DngFloatWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/DngFloatWriter.cpp -------------------------------------------------------------------------------- /src/DngFloatWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/DngFloatWriter.hpp -------------------------------------------------------------------------------- /src/DngPropertiesDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/DngPropertiesDialog.cpp -------------------------------------------------------------------------------- /src/DngPropertiesDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/DngPropertiesDialog.hpp -------------------------------------------------------------------------------- /src/DraggableScrollArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/DraggableScrollArea.cpp -------------------------------------------------------------------------------- /src/DraggableScrollArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/DraggableScrollArea.hpp -------------------------------------------------------------------------------- /src/EditableMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/EditableMask.cpp -------------------------------------------------------------------------------- /src/EditableMask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/EditableMask.hpp -------------------------------------------------------------------------------- /src/ExifTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/ExifTransfer.cpp -------------------------------------------------------------------------------- /src/ExifTransfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/ExifTransfer.hpp -------------------------------------------------------------------------------- /src/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/FileSystem.cpp -------------------------------------------------------------------------------- /src/FileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/FileSystem.hpp -------------------------------------------------------------------------------- /src/Histogram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Histogram.hpp -------------------------------------------------------------------------------- /src/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Image.cpp -------------------------------------------------------------------------------- /src/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Image.hpp -------------------------------------------------------------------------------- /src/ImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/ImageIO.cpp -------------------------------------------------------------------------------- /src/ImageIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/ImageIO.hpp -------------------------------------------------------------------------------- /src/ImageStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/ImageStack.cpp -------------------------------------------------------------------------------- /src/ImageStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/ImageStack.hpp -------------------------------------------------------------------------------- /src/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Launcher.cpp -------------------------------------------------------------------------------- /src/Launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Launcher.hpp -------------------------------------------------------------------------------- /src/LoadOptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/LoadOptionsDialog.cpp -------------------------------------------------------------------------------- /src/LoadOptionsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/LoadOptionsDialog.hpp -------------------------------------------------------------------------------- /src/LoadSaveOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/LoadSaveOptions.hpp -------------------------------------------------------------------------------- /src/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/Log.hpp -------------------------------------------------------------------------------- /src/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/MainWindow.cpp -------------------------------------------------------------------------------- /src/MainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/MainWindow.hpp -------------------------------------------------------------------------------- /src/PreviewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/PreviewWidget.cpp -------------------------------------------------------------------------------- /src/PreviewWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/PreviewWidget.hpp -------------------------------------------------------------------------------- /src/ProgressIndicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/ProgressIndicator.hpp -------------------------------------------------------------------------------- /src/RawParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/RawParameters.cpp -------------------------------------------------------------------------------- /src/RawParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/RawParameters.hpp -------------------------------------------------------------------------------- /src/TiffDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/TiffDirectory.cpp -------------------------------------------------------------------------------- /src/TiffDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/TiffDirectory.hpp -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/SampleImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/SampleImage.hpp -------------------------------------------------------------------------------- /test/sample1.dng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/sample1.dng -------------------------------------------------------------------------------- /test/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/sample1.png -------------------------------------------------------------------------------- /test/sample2.dng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/sample2.dng -------------------------------------------------------------------------------- /test/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/sample2.png -------------------------------------------------------------------------------- /test/sample3.dng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/sample3.dng -------------------------------------------------------------------------------- /test/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/sample3.png -------------------------------------------------------------------------------- /test/sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/sample4.png -------------------------------------------------------------------------------- /test/testArray2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/testArray2D.cpp -------------------------------------------------------------------------------- /test/testBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/testBitmap.cpp -------------------------------------------------------------------------------- /test/testBoxBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/testBoxBlur.cpp -------------------------------------------------------------------------------- /test/testDngFloatWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/testDngFloatWriter.cpp -------------------------------------------------------------------------------- /test/testHistogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/testHistogram.cpp -------------------------------------------------------------------------------- /test/testImageStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/testImageStack.cpp -------------------------------------------------------------------------------- /test/testMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/testMain.cpp -------------------------------------------------------------------------------- /test/testMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcelaya/hdrmerge/HEAD/test/testMap.png --------------------------------------------------------------------------------