Improvment to show modifications
This commit is contained in:
parent
a5f4a199d1
commit
05d9362e8f
@ -2260,7 +2260,7 @@ TP_LOCALLAB_CLIPTM;Clip Restored datas (gain)
|
|||||||
TP_LOCALLAB_COFR;Color & Light - Small defects
|
TP_LOCALLAB_COFR;Color & Light - Small defects
|
||||||
TP_LOCALLAB_COL_NAME;Name
|
TP_LOCALLAB_COL_NAME;Name
|
||||||
TP_LOCALLAB_COL_VIS;Status
|
TP_LOCALLAB_COL_VIS;Status
|
||||||
TP_LOCALLAB_COLORDE;Color preview selection ΔE
|
TP_LOCALLAB_COLORDE;Color preview selection ΔE - Intensity Show Modifications
|
||||||
TP_LOCALLAB_COMPFRA;Levels Dynamic Laplacian Range Compression ƒ
|
TP_LOCALLAB_COMPFRA;Levels Dynamic Laplacian Range Compression ƒ
|
||||||
TP_LOCALLAB_COMPREFRA;Levels Dynamic Wavelet Range (un)Compression
|
TP_LOCALLAB_COMPREFRA;Levels Dynamic Wavelet Range (un)Compression
|
||||||
TP_LOCALLAB_COMPRESS_TOOLTIP;Use if necessary the module 'Clarity & Sharp mask and Blend & Soft Images' by adjusting 'Soft radius' to reduce artifacts.
|
TP_LOCALLAB_COMPRESS_TOOLTIP;Use if necessary the module 'Clarity & Sharp mask and Blend & Soft Images' by adjusting 'Soft radius' to reduce artifacts.
|
||||||
|
@ -6502,9 +6502,11 @@ void ImProcFunctions::transit_shapedetect2(int call, int senstype, const LabImag
|
|||||||
diflc += 0.5f * maxdifab;
|
diflc += 0.5f * maxdifab;
|
||||||
}
|
}
|
||||||
|
|
||||||
transformed->L[y + ystart][x + xstart] = CLIP(12000.f + diflc);
|
float ampli = 1.f + fabs(lp.colorde);
|
||||||
transformed->a[y + ystart][x + xstart] = CLIPC(difa);
|
ampli = 2.f + 0.5f * (ampli - 2.f);
|
||||||
transformed->b[y + ystart][x + xstart] = CLIPC(difb);
|
transformed->L[y + ystart][x + xstart] = CLIP(12000.f + 0.5f * ampli * diflc);
|
||||||
|
transformed->a[y + ystart][x + xstart] = CLIPC(ampli * difa);
|
||||||
|
transformed->b[y + ystart][x + xstart] = CLIPC(ampli * difb);
|
||||||
} else if (previewexp || previewvib || previewcol || previewSH || previewtm || previewlc) {//show deltaE
|
} else if (previewexp || previewvib || previewcol || previewSH || previewtm || previewlc) {//show deltaE
|
||||||
difb = reducdE * 10000.f * lp.colorde;
|
difb = reducdE * 10000.f * lp.colorde;
|
||||||
float darklim = 5000.f;
|
float darklim = 5000.f;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user