Implement DNG gain map for LibRaw
This commit is contained in:
@@ -362,3 +362,7 @@ int CacheImageData::save (const Glib::ustring& fname)
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<GainMap> CacheImageData::getGainMaps() const
|
||||
{
|
||||
return std::vector<GainMap>();
|
||||
}
|
||||
|
@@ -22,6 +22,7 @@
|
||||
|
||||
#include "options.h"
|
||||
|
||||
#include "../rtengine/dnggainmap.h"
|
||||
#include "../rtengine/imageformat.h"
|
||||
#include "../rtengine/rtengine.h"
|
||||
|
||||
@@ -116,6 +117,7 @@ public:
|
||||
bool getHDR() const override { return isHDR; }
|
||||
std::string getImageType() const override { return isPixelShift ? "PS" : isHDR ? "HDR" : "STD"; }
|
||||
rtengine::IIOSampleFormat getSampleFormat() const override { return sampleFormat; }
|
||||
std::vector<GainMap> getGainMaps() const override;
|
||||
void getDimensions(int &w, int &h) const override
|
||||
{
|
||||
w = width;
|
||||
|
Reference in New Issue
Block a user