Blend CMS with matrix feature

see issue 951
This commit is contained in:
Oliver Duis 2011-08-31 19:49:00 +02:00
parent f89fcd56ba
commit d76f3c38c5
11 changed files with 74 additions and 18 deletions

View File

@ -870,6 +870,7 @@ TP_HSVEQUALIZER_LABEL;HSV-Equalizer
TP_HSVEQUALIZER_NEUTRAL;Neutral TP_HSVEQUALIZER_NEUTRAL;Neutral
TP_HSVEQUALIZER_SAT;S TP_HSVEQUALIZER_SAT;S
TP_HSVEQUALIZER_VAL;V TP_HSVEQUALIZER_VAL;V
TP_ICM_BLENDCMSMATRIX;Lichter aus Matrix einmischen
TP_ICM_FILEDLGFILTERANY;Alle Dateien TP_ICM_FILEDLGFILTERANY;Alle Dateien
TP_ICM_FILEDLGFILTERICM;ICC-Profildateien TP_ICM_FILEDLGFILTERICM;ICC-Profildateien
TP_ICM_GAMMABEFOREINPUT;Profil enthält Gamma-Anpassung TP_ICM_GAMMABEFOREINPUT;Profil enthält Gamma-Anpassung

View File

@ -860,6 +860,7 @@ TP_HSVEQUALIZER_LABEL;HSV Equalizer
TP_HSVEQUALIZER_NEUTRAL;Neutral TP_HSVEQUALIZER_NEUTRAL;Neutral
TP_HSVEQUALIZER_SAT;S TP_HSVEQUALIZER_SAT;S
TP_HSVEQUALIZER_VAL;V TP_HSVEQUALIZER_VAL;V
TP_ICM_BLENDCMSMATRIX;Blend highlights with matrix
TP_ICM_FILEDLGFILTERANY;Any files TP_ICM_FILEDLGFILTERANY;Any files
TP_ICM_FILEDLGFILTERICM;ICC Profile Files TP_ICM_FILEDLGFILTERICM;ICC Profile Files
TP_ICM_GAMMABEFOREINPUT;Profile applies Gamma TP_ICM_GAMMABEFOREINPUT;Profile applies Gamma

View File

@ -36,6 +36,13 @@ Imagefloat::Imagefloat (int w, int h)
allocate (w, h); allocate (w, h);
} }
// Copy other image
Imagefloat::Imagefloat (Imagefloat& other) {
unaligned=NULL; data=NULL;
allocate (other.width, other.height);
memcpy(data, other.data, width*height*3);
}
Imagefloat::~Imagefloat () { Imagefloat::~Imagefloat () {
if (data!=NULL) { if (data!=NULL) {

View File

@ -53,6 +53,7 @@ class Imagefloat : public ImageIO, public IImagefloat {
Imagefloat (); Imagefloat ();
Imagefloat (int width, int height); Imagefloat (int width, int height);
Imagefloat (Imagefloat& other);
~Imagefloat (); ~Imagefloat ();
Imagefloat* copy (); Imagefloat* copy ();

View File

@ -217,6 +217,7 @@ void ProcParams::setDefaults () {
icm.input = ""; icm.input = "";
icm.gammaOnInput = false; icm.gammaOnInput = false;
icm.blendCMSMatrix = false;
icm.working = "sRGB"; icm.working = "sRGB";
icm.output = "sRGB"; icm.output = "sRGB";
icm.gamma = "default"; icm.gamma = "default";
@ -461,6 +462,7 @@ int ProcParams::save (Glib::ustring fname, Glib::ustring fname2) const {
// save color management settings // save color management settings
keyFile.set_string ("Color Management", "InputProfile", icm.input); keyFile.set_string ("Color Management", "InputProfile", icm.input);
keyFile.set_boolean ("Color Management", "ApplyGammaBeforeInputProfile", icm.gammaOnInput); keyFile.set_boolean ("Color Management", "ApplyGammaBeforeInputProfile", icm.gammaOnInput);
keyFile.set_boolean ("Color Management", "BlendCMSMatrix", icm.blendCMSMatrix);
keyFile.set_string ("Color Management", "WorkingProfile", icm.working); keyFile.set_string ("Color Management", "WorkingProfile", icm.working);
keyFile.set_string ("Color Management", "OutputProfile", icm.output); keyFile.set_string ("Color Management", "OutputProfile", icm.output);
keyFile.set_string ("Color Management", "Gammafree", icm.gamma); keyFile.set_string ("Color Management", "Gammafree", icm.gamma);
@ -812,6 +814,7 @@ if (keyFile.has_group ("Resize")) {
if (keyFile.has_group ("Color Management")) { if (keyFile.has_group ("Color Management")) {
if (keyFile.has_key ("Color Management", "InputProfile")) icm.input = keyFile.get_string ("Color Management", "InputProfile"); if (keyFile.has_key ("Color Management", "InputProfile")) icm.input = keyFile.get_string ("Color Management", "InputProfile");
if (keyFile.has_key ("Color Management", "ApplyGammaBeforeInputProfile")) icm.gammaOnInput = keyFile.get_boolean ("Color Management", "ApplyGammaBeforeInputProfile"); if (keyFile.has_key ("Color Management", "ApplyGammaBeforeInputProfile")) icm.gammaOnInput = keyFile.get_boolean ("Color Management", "ApplyGammaBeforeInputProfile");
if (keyFile.has_key ("Color Management", "BlendCMSMatrix")) icm.blendCMSMatrix = keyFile.get_boolean ("Color Management", "BlendCMSMatrix");
if (keyFile.has_key ("Color Management", "WorkingProfile")) icm.working = keyFile.get_string ("Color Management", "WorkingProfile"); if (keyFile.has_key ("Color Management", "WorkingProfile")) icm.working = keyFile.get_string ("Color Management", "WorkingProfile");
if (keyFile.has_key ("Color Management", "OutputProfile")) icm.output = keyFile.get_string ("Color Management", "OutputProfile"); if (keyFile.has_key ("Color Management", "OutputProfile")) icm.output = keyFile.get_string ("Color Management", "OutputProfile");
if (keyFile.has_key ("Color Management", "Gammafree")) icm.gamma = keyFile.get_string ("Color Management", "Gammafree"); if (keyFile.has_key ("Color Management", "Gammafree")) icm.gamma = keyFile.get_string ("Color Management", "Gammafree");
@ -1061,6 +1064,7 @@ bool ProcParams::operator== (const ProcParams& other) {
&& raw.linenoise == other.raw.linenoise && raw.linenoise == other.raw.linenoise
&& icm.input == other.icm.input && icm.input == other.icm.input
&& icm.gammaOnInput == other.icm.gammaOnInput && icm.gammaOnInput == other.icm.gammaOnInput
&& icm.blendCMSMatrix == other.icm.blendCMSMatrix
&& icm.working == other.icm.working && icm.working == other.icm.working
&& icm.output == other.icm.output && icm.output == other.icm.output
&& icm.gamma == other.icm.gamma && icm.gamma == other.icm.gamma

View File

@ -339,6 +339,7 @@ class ColorManagementParams {
public: public:
Glib::ustring input; Glib::ustring input;
bool gammaOnInput; bool gammaOnInput;
bool blendCMSMatrix;
Glib::ustring working; Glib::ustring working;
Glib::ustring output; Glib::ustring output;
static const Glib::ustring NoICMString; static const Glib::ustring NoICMString;

View File

@ -1572,9 +1572,7 @@ void RawImageSource::colorSpaceConversion (Imagefloat* im, ColorManagementParams
cmsHPROFILE in; cmsHPROFILE in;
if (!findInputProfile(cmp.input, embedded, camName, in)) return; if (!findInputProfile(cmp.input, embedded, camName, in)) return;
if (in==NULL) { // Calculate matrix for direct conversion raw>working space
// use default camprofile, supplied by dcraw
// in this case we avoid using the slllllooooooowwww lcms
TMatrix work = iccStore->workingSpaceInverseMatrix (cmp.working); TMatrix work = iccStore->workingSpaceInverseMatrix (cmp.working);
float mat[3][3] = {{0, 0, 0}, {0, 0, 0}, {0, 0, 0}}; float mat[3][3] = {{0, 0, 0}, {0, 0, 0}, {0, 0, 0}};
for (int i=0; i<3; i++) for (int i=0; i<3; i++)
@ -1582,6 +1580,11 @@ void RawImageSource::colorSpaceConversion (Imagefloat* im, ColorManagementParams
for (int k=0; k<3; k++) for (int k=0; k<3; k++)
mat[i][j] += work[i][k] * camMatrix[k][j]; // rgb_xyz * xyz_cam mat[i][j] += work[i][k] * camMatrix[k][j]; // rgb_xyz * xyz_cam
if (in==NULL) {
// use default camprofile, supplied by dcraw
// in this case we avoid using the slllllooooooowwww lcms
#pragma omp parallel for #pragma omp parallel for
for (int i=0; i<im->height; i++) for (int i=0; i<im->height; i++)
for (int j=0; j<im->width; j++) { for (int j=0; j<im->width; j++) {
@ -1596,6 +1599,9 @@ void RawImageSource::colorSpaceConversion (Imagefloat* im, ColorManagementParams
} }
} else { } else {
Imagefloat* imgPreLCMS=NULL;
if (cmp.blendCMSMatrix) imgPreLCMS=new Imagefloat(*im);
// use supplied input profile // use supplied input profile
// color space transform is expecting data in the range (0,1) // color space transform is expecting data in the range (0,1)
for ( int h = 0; h < im->height; ++h ) for ( int h = 0; h < im->height; ++h )
@ -1640,14 +1646,36 @@ void RawImageSource::colorSpaceConversion (Imagefloat* im, ColorManagementParams
cmsDeleteTransform(hTransform); cmsDeleteTransform(hTransform);
// restore normalization to the range (0,65535) // restore normalization to the range (0,65535) and blend matrix colors if LCMS is clipping
#pragma omp parallel for #pragma omp parallel for
for ( int h = 0; h < im->height; ++h ) for ( int h = 0; h < im->height; ++h )
for ( int w = 0; w < im->width; ++w ) { for ( int w = 0; w < im->width; ++w ) {
im->r[h][w] *= 65535.0 ; im->r[h][w] *= 65535.0 ;
im->g[h][w] *= 65535.0 ; im->g[h][w] *= 65535.0 ;
im->b[h][w] *= 65535.0 ; im->b[h][w] *= 65535.0 ;
if (cmp.blendCMSMatrix) {
// Red
if (im->r[h][w]>65534.9) {
float f = mat[0][0]*imgPreLCMS->r[h][w] + mat[0][1]*imgPreLCMS->g[h][w] + mat[0][2]*imgPreLCMS->b[h][w];
if (f>im->r[h][w]) im->r[h][w]=f;
} }
// Green
if (im->g[h][w]>65534.9) {
float f = mat[1][0]*imgPreLCMS->r[h][w] + mat[1][1]*imgPreLCMS->g[h][w] + mat[1][2]*imgPreLCMS->b[h][w];
if (f>im->g[h][w]) im->g[h][w]=f;
}
// Blue
if (im->b[h][w]>65534.9) {
float f = mat[2][0]*imgPreLCMS->r[h][w] + mat[2][1]*imgPreLCMS->g[h][w] + mat[2][2]*imgPreLCMS->b[h][w];
if (f>im->b[h][w]) im->b[h][w]=f;
}
}
}
if (imgPreLCMS!=NULL) delete imgPreLCMS;
} }
//t3.set (); //t3.set ();

View File

@ -69,6 +69,10 @@ ICMPanel::ICMPanel () : Gtk::VBox(), FoldableToolPanel(this), iunchanged(NULL),
igamma->set_sensitive (false); igamma->set_sensitive (false);
pack_start (*igamma, Gtk::PACK_SHRINK, 4); pack_start (*igamma, Gtk::PACK_SHRINK, 4);
ckbBlendCMSMatrix = Gtk::manage (new Gtk::CheckButton (M("TP_ICM_BLENDCMSMATRIX")));
ckbBlendCMSMatrix->set_sensitive (false);
pack_start (*ckbBlendCMSMatrix, Gtk::PACK_SHRINK, 4);
saveRef = Gtk::manage (new Gtk::Button (M("TP_ICM_SAVEREFERENCE"))); saveRef = Gtk::manage (new Gtk::Button (M("TP_ICM_SAVEREFERENCE")));
saveRef->set_image (*Gtk::manage (new Gtk::Image (Gtk::StockID("gtk-save"), Gtk::ICON_SIZE_BUTTON))); saveRef->set_image (*Gtk::manage (new Gtk::Image (Gtk::StockID("gtk-save"), Gtk::ICON_SIZE_BUTTON)));
pack_start (*saveRef, Gtk::PACK_SHRINK, 4); pack_start (*saveRef, Gtk::PACK_SHRINK, 4);
@ -174,7 +178,8 @@ ICMPanel::ICMPanel () : Gtk::VBox(), FoldableToolPanel(this), iunchanged(NULL),
icameraICC->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::ipChanged) ); icameraICC->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::ipChanged) );
iembedded->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::ipChanged) ); iembedded->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::ipChanged) );
ifromfile->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::ipChanged) ); ifromfile->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::ipChanged) );
igamma->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::profAppGammaChanged) ); igamma->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::iccTogglesChanged) );
ckbBlendCMSMatrix->signal_toggled().connect( sigc::mem_fun(*this, &ICMPanel::iccTogglesChanged) );
ipc = ipDialog->signal_selection_changed().connect( sigc::mem_fun(*this, &ICMPanel::ipSelectionChanged) ); ipc = ipDialog->signal_selection_changed().connect( sigc::mem_fun(*this, &ICMPanel::ipSelectionChanged) );
saveRef->signal_pressed().connect( sigc::mem_fun(*this, &ICMPanel::saveReferencePressed) ); saveRef->signal_pressed().connect( sigc::mem_fun(*this, &ICMPanel::saveReferencePressed) );
@ -188,25 +193,25 @@ void ICMPanel::read (const ProcParams* pp, const ParamsEdited* pedited) {
ipc.block (true); ipc.block (true);
if (pp->icm.input == "(none)" && icamera->get_state()!=Gtk::STATE_INSENSITIVE) { if (pp->icm.input == "(none)" && icamera->get_state()!=Gtk::STATE_INSENSITIVE) {
inone->set_active (true); inone->set_active (true);
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive (false);
} }
else if (pp->icm.input == "(embedded)" || ((pp->icm.input == "(camera)" || pp->icm.input=="") && icamera->get_state()==Gtk::STATE_INSENSITIVE)) { else if (pp->icm.input == "(embedded)" || ((pp->icm.input == "(camera)" || pp->icm.input=="") && icamera->get_state()==Gtk::STATE_INSENSITIVE)) {
iembedded->set_active (true); iembedded->set_active (true);
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive (false);
} }
else if ((pp->icm.input == "(cameraICC)") && icameraICC->get_state()!=Gtk::STATE_INSENSITIVE) { else if ((pp->icm.input == "(cameraICC)") && icameraICC->get_state()!=Gtk::STATE_INSENSITIVE) {
icameraICC->set_active (true); icameraICC->set_active (true);
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive (true);
} }
else if ((pp->icm.input == "(camera)" || pp->icm.input=="") && icamera->get_state()!=Gtk::STATE_INSENSITIVE) { else if ((pp->icm.input == "(camera)" || pp->icm.input=="") && icamera->get_state()!=Gtk::STATE_INSENSITIVE) {
icamera->set_active (true); icamera->set_active (true);
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive (false);
} }
else { else {
ifromfile->set_active (true); ifromfile->set_active (true);
oldip = pp->icm.input.substr(5); // cut of "file:" oldip = pp->icm.input.substr(5); // cut of "file:"
ipDialog->set_filename (pp->icm.input.substr(5)); ipDialog->set_filename (pp->icm.input.substr(5));
igamma->set_sensitive (true); igamma->set_sensitive (true); ckbBlendCMSMatrix->set_sensitive (true);
} }
wnames->set_active_text (pp->icm.working); wnames->set_active_text (pp->icm.working);
@ -221,12 +226,13 @@ void ICMPanel::read (const ProcParams* pp, const ParamsEdited* pedited) {
onames->set_active_text (M("TP_ICM_NOICM")); onames->set_active_text (M("TP_ICM_NOICM"));
igamma->set_active (pp->icm.gammaOnInput); igamma->set_active (pp->icm.gammaOnInput);
ckbBlendCMSMatrix->set_active (pp->icm.blendCMSMatrix);
onames->set_sensitive(wgamma->get_active_row_number()==0 || freegamma->get_active()); //"default" onames->set_sensitive(wgamma->get_active_row_number()==0 || freegamma->get_active()); //"default"
wgamma->set_sensitive(!freegamma->get_active()); wgamma->set_sensitive(!freegamma->get_active());
if (pedited) { if (pedited) {
iunchanged->set_active (!pedited->icm.input); iunchanged->set_active (!pedited->icm.input);
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive (false);
if (!pedited->icm.working) if (!pedited->icm.working)
wnames->set_active_text(M("GENERAL_UNCHANGED")); wnames->set_active_text(M("GENERAL_UNCHANGED"));
if (!pedited->icm.output) if (!pedited->icm.output)
@ -282,6 +288,7 @@ void ICMPanel::write (ProcParams* pp, ParamsEdited* pedited) {
pp->icm.output = onames->get_active_text(); pp->icm.output = onames->get_active_text();
pp->icm.freegamma = freegamma->get_active(); pp->icm.freegamma = freegamma->get_active();
pp->icm.gammaOnInput = igamma->get_active (); pp->icm.gammaOnInput = igamma->get_active ();
pp->icm.blendCMSMatrix = ckbBlendCMSMatrix->get_active ();
pp->icm.gampos =(double) g_ampos->getValue(); pp->icm.gampos =(double) g_ampos->getValue();
pp->icm.slpos =(double) s_lpos->getValue(); pp->icm.slpos =(double) s_lpos->getValue();
@ -290,6 +297,7 @@ void ICMPanel::write (ProcParams* pp, ParamsEdited* pedited) {
pedited->icm.working = wnames->get_active_text()!=M("GENERAL_UNCHANGED"); pedited->icm.working = wnames->get_active_text()!=M("GENERAL_UNCHANGED");
pedited->icm.output = onames->get_active_text()!=M("GENERAL_UNCHANGED"); pedited->icm.output = onames->get_active_text()!=M("GENERAL_UNCHANGED");
pedited->icm.gammaOnInput = !ifromfile->get_active (); pedited->icm.gammaOnInput = !ifromfile->get_active ();
pedited->icm.blendCMSMatrix = !ckbBlendCMSMatrix->get_inconsistent ();
pedited->icm.gamma = wgamma->get_active_text()!=M("GENERAL_UNCHANGED"); pedited->icm.gamma = wgamma->get_active_text()!=M("GENERAL_UNCHANGED");
pedited->icm.freegamma =!freegamma->get_inconsistent(); pedited->icm.freegamma =!freegamma->get_inconsistent();
pedited->icm.gampos = g_ampos->getEditedState (); pedited->icm.gampos = g_ampos->getEditedState ();
@ -345,23 +353,23 @@ void ICMPanel::ipChanged () {
std::string profname; std::string profname;
if (inone->get_active()) { if (inone->get_active()) {
profname = "(none)"; profname = "(none)";
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive(false);
} }
else if (iembedded->get_active ()) { else if (iembedded->get_active ()) {
profname = "(embedded)"; profname = "(embedded)";
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive(false);
} }
else if (icamera->get_active ()) { else if (icamera->get_active ()) {
profname = "(camera)"; profname = "(camera)";
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive(false);
} }
else if (icameraICC->get_active ()) { else if (icameraICC->get_active ()) {
profname = "(cameraICC)"; profname = "(cameraICC)";
igamma->set_sensitive (false); igamma->set_sensitive (false); ckbBlendCMSMatrix->set_sensitive(true);
} }
else { else {
profname = ipDialog->get_filename (); profname = ipDialog->get_filename ();
igamma->set_sensitive (true); igamma->set_sensitive (true); ckbBlendCMSMatrix->set_sensitive(true);
} }
if (listener && profname!=oldip) if (listener && profname!=oldip)
@ -370,7 +378,7 @@ void ICMPanel::ipChanged () {
oldip = profname; oldip = profname;
} }
void ICMPanel::profAppGammaChanged() { void ICMPanel::iccTogglesChanged() {
if (listener) listener->panelChanged (EvIProfile, ""); if (listener) listener->panelChanged (EvIProfile, "");
} }

View File

@ -47,6 +47,7 @@ class ICMPanel : public Gtk::VBox, public AdjusterListener, public FoldableToolP
Gtk::RadioButton* icameraICC; Gtk::RadioButton* icameraICC;
Gtk::RadioButton* ifromfile; Gtk::RadioButton* ifromfile;
Gtk::CheckButton* igamma; Gtk::CheckButton* igamma;
Gtk::CheckButton* ckbBlendCMSMatrix;
Gtk::ComboBoxText* wnames; Gtk::ComboBoxText* wnames;
Gtk::ComboBoxText* wgamma; Gtk::ComboBoxText* wgamma;
@ -79,7 +80,7 @@ class ICMPanel : public Gtk::VBox, public AdjusterListener, public FoldableToolP
void gpChanged (); void gpChanged ();
void GamChanged (); void GamChanged ();
void ipSelectionChanged (); void ipSelectionChanged ();
void profAppGammaChanged(); void iccTogglesChanged();
void setRaw (bool raw); void setRaw (bool raw);
void saveReferencePressed (); void saveReferencePressed ();

View File

@ -146,6 +146,7 @@ void ParamsEdited::set (bool v) {
resize.enabled = v; resize.enabled = v;
icm.input = v; icm.input = v;
icm.gammaOnInput = v; icm.gammaOnInput = v;
icm.blendCMSMatrix = v;
icm.working = v; icm.working = v;
icm.output = v; icm.output = v;
icm.gamma = v; icm.gamma = v;
@ -321,6 +322,7 @@ void ParamsEdited::initFrom (const std::vector<rtengine::procparams::ProcParams>
resize.enabled = resize.enabled && p.resize.enabled == other.resize.enabled; resize.enabled = resize.enabled && p.resize.enabled == other.resize.enabled;
icm.input = icm.input && p.icm.input == other.icm.input; icm.input = icm.input && p.icm.input == other.icm.input;
icm.gammaOnInput = icm.gammaOnInput && p.icm.gammaOnInput == other.icm.gammaOnInput; icm.gammaOnInput = icm.gammaOnInput && p.icm.gammaOnInput == other.icm.gammaOnInput;
icm.blendCMSMatrix = icm.blendCMSMatrix && p.icm.blendCMSMatrix == other.icm.blendCMSMatrix;
icm.working = icm.working && p.icm.working == other.icm.working; icm.working = icm.working && p.icm.working == other.icm.working;
icm.output = icm.output && p.icm.output == other.icm.output; icm.output = icm.output && p.icm.output == other.icm.output;
icm.gamma = icm.gamma && p.icm.gamma == other.icm.gamma; icm.gamma = icm.gamma && p.icm.gamma == other.icm.gamma;
@ -486,6 +488,7 @@ void ParamsEdited::combine (rtengine::procparams::ProcParams& toEdit, const rten
if (resize.enabled) toEdit.resize.enabled = mods.resize.enabled; if (resize.enabled) toEdit.resize.enabled = mods.resize.enabled;
if (icm.input) toEdit.icm.input = mods.icm.input; if (icm.input) toEdit.icm.input = mods.icm.input;
if (icm.gammaOnInput) toEdit.icm.gammaOnInput = mods.icm.gammaOnInput; if (icm.gammaOnInput) toEdit.icm.gammaOnInput = mods.icm.gammaOnInput;
if (icm.blendCMSMatrix) toEdit.icm.blendCMSMatrix = mods.icm.blendCMSMatrix;
if (icm.working) toEdit.icm.working = mods.icm.working; if (icm.working) toEdit.icm.working = mods.icm.working;
if (icm.output) toEdit.icm.output = mods.icm.output; if (icm.output) toEdit.icm.output = mods.icm.output;
if (icm.gampos) toEdit.icm.gampos = mods.icm.gampos; if (icm.gampos) toEdit.icm.gampos = mods.icm.gampos;

View File

@ -261,6 +261,7 @@ class ColorManagementParamsEdited {
public: public:
bool input; bool input;
bool gammaOnInput; bool gammaOnInput;
bool blendCMSMatrix;
bool working; bool working;
bool output; bool output;
bool gamma; bool gamma;