Misc. typos
Found via `codespell` + removed rtengine/dcraw.patch per discussion in https://github.com/Beep6581/RawTherapee/pull/4395
This commit is contained in:
@@ -1875,7 +1875,7 @@ void ImProcFunctions::WaveletcontAllL(LabImage * labco, float ** varhue, float *
|
||||
// I was inspired by the principle of Canny and Lipschitz (continuity and derivability)
|
||||
// I adapted the principle but have profoundly changed the algorithm
|
||||
// One can 1) change all parameters and found good parameters;
|
||||
//one can also chnage in calckoe
|
||||
//one can also change in calckoe
|
||||
float edd = 3.f;
|
||||
float eddlow = 15.f;
|
||||
float eddlipinfl = 0.005f * cp.edgsens + 0.4f;
|
||||
@@ -1920,7 +1920,7 @@ void ImProcFunctions::WaveletcontAllL(LabImage * labco, float ** varhue, float *
|
||||
float interm = 0.f;
|
||||
|
||||
if(cp.lip3 && cp.lipp) {
|
||||
// comparaison between pixel and neighbours
|
||||
// comparison between pixel and neighbours
|
||||
const auto neigh = cp.neigh == 1;
|
||||
const auto kneigh = neigh ? 28.f : 38.f;
|
||||
const auto somm = neigh ? 40.f : 50.f;
|
||||
@@ -1987,7 +1987,7 @@ void ImProcFunctions::WaveletcontAllL(LabImage * labco, float ** varhue, float *
|
||||
kampli = AmpLip / aamp;
|
||||
}
|
||||
|
||||
// comparaison betwwen pixel and neighbours to do ==> I think 3 dir above is better
|
||||
// comparison betwwen pixel and neighbours to do ==> I think 3 dir above is better
|
||||
/* if(cp.lip3){
|
||||
koeLi[lvl*3][i*W_L + j] = (koeLi[lvl*3][i*W_L + j] + koeLi[lvl*3][(i-1)*W_L + j] + koeLi[lvl*3][(i+1)*W_L + j]
|
||||
+ koeLi[lvl*3][i*W_L + j+1] + koeLi[lvl*3][i*W_L + j-1] + koeLi[lvl*3][(i-1)*W_L + j-1]
|
||||
|
Reference in New Issue
Block a user