Local adjustments - Mask - Change behavior Laplacian (#6075)

* Change Laplacian action in mask

* Change tooltip Laplace
This commit is contained in:
Desmis
2021-01-28 07:32:07 +01:00
committed by GitHub
parent a5280fddf5
commit 727c9557b4
4 changed files with 63 additions and 6 deletions

View File

@@ -251,6 +251,8 @@ public:
void deltaEforMask(float **rdE, int bfw, int bfh, LabImage* bufcolorig, const float hueref, const float chromaref, const float lumaref,
float maxdE, float mindE, float maxdElim, float mindElim, float iterat, float limscope, int scope, float balance, float balanceh);
void discrete_laplacian_threshold(float * data_out, const float * data_in, size_t nx, size_t ny, float t);
void laplacian(const array2D<float> &src, array2D<float> &dst, int bfw, int bfh, float threshold, float ceiling, float factor, bool multiThread);
void rex_poisson_dct(float * data, size_t nx, size_t ny, double m);
void mean_dt(const float * data, size_t size, double& mean_p, double& dt_p);
float *cos_table(size_t size);