Merge branch 'dev' into spot-removal-tool
This commit is contained in:
@@ -729,7 +729,6 @@ struct DirPyrDenoiseParams {
|
||||
bool operator !=(const DirPyrDenoiseParams& other) const;
|
||||
|
||||
void getCurves(NoiseCurve& lCurve, NoiseCurve& cCurve) const;
|
||||
|
||||
};
|
||||
|
||||
// EPD related parameters.
|
||||
@@ -1091,7 +1090,6 @@ struct ColorManagementParams {
|
||||
bool operator !=(const ColorManagementParams& other) const;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Parameters for metadata handling
|
||||
*/
|
||||
@@ -1330,7 +1328,6 @@ struct HSVEqualizerParams {
|
||||
bool operator !=(const HSVEqualizerParams& other) const;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Film simualtion params
|
||||
*/
|
||||
@@ -1345,7 +1342,6 @@ struct FilmSimulationParams {
|
||||
bool operator !=(const FilmSimulationParams& other) const;
|
||||
};
|
||||
|
||||
|
||||
struct SoftLightParams {
|
||||
bool enabled;
|
||||
int strength;
|
||||
@@ -1369,7 +1365,6 @@ struct DehazeParams {
|
||||
bool operator!=(const DehazeParams &other) const;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Parameters for RAW demosaicing, common to all sensor type
|
||||
*/
|
||||
@@ -1536,6 +1531,21 @@ struct RAWParams {
|
||||
static Glib::ustring getFlatFieldBlurTypeString(FlatFieldBlurType type);
|
||||
};
|
||||
|
||||
/**
|
||||
* Parameters of film negative
|
||||
*/
|
||||
struct FilmNegativeParams {
|
||||
bool enabled;
|
||||
double redRatio;
|
||||
double greenExp;
|
||||
double blueRatio;
|
||||
|
||||
FilmNegativeParams();
|
||||
|
||||
bool operator ==(const FilmNegativeParams& other) const;
|
||||
bool operator !=(const FilmNegativeParams& other) const;
|
||||
};
|
||||
|
||||
/**
|
||||
* This class holds all the processing parameters applied on the images
|
||||
*/
|
||||
@@ -1585,6 +1595,7 @@ public:
|
||||
FilmSimulationParams filmSimulation; ///< film simulation parameters
|
||||
SoftLightParams softlight; ///< softlight parameters
|
||||
DehazeParams dehaze; ///< dehaze parameters
|
||||
FilmNegativeParams filmNegative; ///< Film negative parameters
|
||||
int rank; ///< Custom image quality ranking
|
||||
int colorlabel; ///< Custom color label
|
||||
bool inTrash; ///< Marks deleted image
|
||||
|
Reference in New Issue
Block a user