merge with Dev..
This commit is contained in:
commit
e4d7b278ee
BIN
rtdata/dcpprofiles/Canon EOS 600D.dcp
Normal file
BIN
rtdata/dcpprofiles/Canon EOS 600D.dcp
Normal file
Binary file not shown.
Binary file not shown.
BIN
rtdata/dcpprofiles/Canon EOS Kiss X5.dcp
Normal file
BIN
rtdata/dcpprofiles/Canon EOS Kiss X5.dcp
Normal file
Binary file not shown.
BIN
rtdata/dcpprofiles/Canon EOS Rebel T3i.dcp
Normal file
BIN
rtdata/dcpprofiles/Canon EOS Rebel T3i.dcp
Normal file
Binary file not shown.
BIN
rtdata/dcpprofiles/FUJIFILM FinePix F600EXR.dcp
Normal file
BIN
rtdata/dcpprofiles/FUJIFILM FinePix F600EXR.dcp
Normal file
Binary file not shown.
@ -3782,13 +3782,12 @@ void ImProcFunctions::rgbProc(Imagefloat* working, LabImage* lab, PipetteBuffer
|
|||||||
float g = std::max(gtemp[ti * TS + tj], 0.f);
|
float g = std::max(gtemp[ti * TS + tj], 0.f);
|
||||||
float b = std::max(btemp[ti * TS + tj], 0.f);
|
float b = std::max(btemp[ti * TS + tj], 0.f);
|
||||||
|
|
||||||
if (r > 65535 || g > 65535 || b > 65535) {
|
if (max(r, g, b) > MAXVALF && min(r, g, b) < MAXVALF) {
|
||||||
filmlike_clip(&r, &g, &b);
|
filmlike_clip(&r, &g, &b);
|
||||||
}
|
}
|
||||||
|
rtemp[ti * TS + tj] = r;
|
||||||
setUnlessOOG(rtemp[ti * TS + tj], r);
|
gtemp[ti * TS + tj] = g;
|
||||||
setUnlessOOG(gtemp[ti * TS + tj], g);
|
btemp[ti * TS + tj] = b;
|
||||||
setUnlessOOG(btemp[ti * TS + tj], b);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user