Small Improvments to wavelet sharpmask - clarity and to guidedfilter Y
This commit is contained in:
parent
560286446b
commit
ace88a88ba
@ -5765,7 +5765,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
|
|
||||||
double thresM = 0.05 * lp.epsb;
|
double thresM = 0.05 * lp.epsb;
|
||||||
double thresm = 0.01 * lp.epsb;
|
double thresm = 0.01 * lp.epsb;
|
||||||
softproc(bufgb.get(), tmp1.get(), 3.f * lp.guidb, bfh, bfw, thresM, thresm, 0.0001f, sk, multiThread);
|
softproc(bufgb.get(), tmp1.get(), 3.f * lp.guidb, bfh, bfw, thresM, thresm, 0.1f, sk, multiThread);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (lp.blurmet == 1 && lp.blmet == 2) {
|
} else if (lp.blurmet == 1 && lp.blmet == 2) {
|
||||||
@ -5784,7 +5784,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
|
|
||||||
double thresM = 0.05 * lp.epsb;
|
double thresM = 0.05 * lp.epsb;
|
||||||
double thresm = 0.01 * lp.epsb;
|
double thresm = 0.01 * lp.epsb;
|
||||||
softproc(tmp2.get(), tmp1.get(), 3.f * lp.guidb, GH, GW, thresM, thresm, 0.0001f, sk, multiThread);
|
softproc(tmp2.get(), tmp1.get(), 3.f * lp.guidb, GH, GW, thresM, thresm, 0.1f, sk, multiThread);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -6989,7 +6989,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
ImProcFunctions::cbdl_local_temp(bufsh, loctemp->L, bfw, bfh, lp.mulloc, 1.f, lp.threshol, lp.clarityml, lp.contresid, lp.blurcbdl, skinprot, false, b_l, t_l, t_r, b_r, choice, sk, multiThread);
|
ImProcFunctions::cbdl_local_temp(bufsh, loctemp->L, bfw, bfh, lp.mulloc, 1.f, lp.threshol, lp.clarityml, lp.contresid, lp.blurcbdl, skinprot, false, b_l, t_l, t_r, b_r, choice, sk, multiThread);
|
||||||
|
|
||||||
if (lp.softradiuscb > 0.f) {
|
if (lp.softradiuscb > 0.f) {
|
||||||
softproc(origcbdl.get(), loctemp.get(), lp.softradiuscb, bfh, bfw, 0.0001, 0.00001, 0.0001f, sk, multiThread);
|
softproc(origcbdl.get(), loctemp.get(), lp.softradiuscb, bfh, bfw, 0.0001, 0.00001, 0.1f, sk, multiThread);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -7897,6 +7897,8 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
|
|
||||||
wavelet_level = min(wavelet_level, maxlevelspot);
|
wavelet_level = min(wavelet_level, maxlevelspot);
|
||||||
|
|
||||||
|
if (mL != 0.f) {
|
||||||
|
|
||||||
wavelet_decomposition *wdspotresid = new wavelet_decomposition(tmpresid->L[0], tmpresid->W, tmpresid->H, wavelet_level, 1, sk, numThreads, 6);
|
wavelet_decomposition *wdspotresid = new wavelet_decomposition(tmpresid->L[0], tmpresid->W, tmpresid->H, wavelet_level, 1, sk, numThreads, 6);
|
||||||
|
|
||||||
if (wdspotresid->memoryAllocationFailed) {
|
if (wdspotresid->memoryAllocationFailed) {
|
||||||
@ -7932,7 +7934,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
|
|
||||||
wdspotresid->reconstruct(tmpresid->L[0], 1.f);
|
wdspotresid->reconstruct(tmpresid->L[0], 1.f);
|
||||||
delete wdspotresid;
|
delete wdspotresid;
|
||||||
|
}
|
||||||
|
|
||||||
wavelet_decomposition wdspot(tmp1->data, bfw, bfh, wavelet_level, 1, sk, numThreads, 6);
|
wavelet_decomposition wdspot(tmp1->data, bfw, bfh, wavelet_level, 1, sk, numThreads, 6);
|
||||||
|
|
||||||
@ -8042,6 +8044,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
}
|
}
|
||||||
|
|
||||||
wdspot.reconstruct(tmp1->data, 1.f);
|
wdspot.reconstruct(tmp1->data, 1.f);
|
||||||
|
float thr = 0.001f;
|
||||||
|
|
||||||
if (maxlvl <= 4) {
|
if (maxlvl <= 4) {
|
||||||
mL0 = 0.f;
|
mL0 = 0.f;
|
||||||
@ -8049,8 +8052,10 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
mL0 = mL;
|
mL0 = mL;
|
||||||
|
thr = 1.f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mL != 0.f) {
|
||||||
#ifdef _OPENMP
|
#ifdef _OPENMP
|
||||||
#pragma omp parallel for
|
#pragma omp parallel for
|
||||||
#endif
|
#endif
|
||||||
@ -8061,7 +8066,8 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (softr > 0.f) {
|
if (softr > 0.f) {
|
||||||
softproc(tmpres.get(), tmp1.get(), softr, bfh, bfw, 0.0001, 0.00001, 0.0001f, sk, multiThread);
|
softproc(tmpres.get(), tmp1.get(), softr, bfh, bfw, 0.0001, 0.00001, thr, sk, multiThread);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8938,7 +8944,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (lp.softradiusexp > 0.f) {
|
if (lp.softradiusexp > 0.f) {
|
||||||
softproc(bufexporig.get(), bufexpfin.get(), lp.softradiusexp, bfh, bfw, 0.0001, 0.00001, 0.0001f, sk, multiThread);
|
softproc(bufexporig.get(), bufexpfin.get(), lp.softradiusexp, bfh, bfw, 0.0001, 0.00001, 0.1f, sk, multiThread);
|
||||||
// softprocess(bufexporig.get(), buflight, lp.softradiusexp, bfh, bfw, sk, multiThread);
|
// softprocess(bufexporig.get(), buflight, lp.softradiusexp, bfh, bfw, sk, multiThread);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -9360,7 +9366,7 @@ void ImProcFunctions::Lab_Local(int call, int sp, float** shbuffer, LabImage * o
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (lp.softradiuscol > 0.f) {
|
if (lp.softradiuscol > 0.f) {
|
||||||
softproc(bufcolorig.get(), bufcolfin.get(), lp.softradiuscol, bfh, bfw, 0.0001, 0.00001, 0.0001f, sk, multiThread);
|
softproc(bufcolorig.get(), bufcolfin.get(), lp.softradiuscol, bfh, bfw, 0.0001, 0.00001, 0.1f, sk, multiThread);
|
||||||
// softprocess(bufcolorig.get(), buflight, lp.softradiuscol, bfh, bfw, sk, multiThread);
|
// softprocess(bufcolorig.get(), buflight, lp.softradiuscol, bfh, bfw, sk, multiThread);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user