Capture Sharpening: avoid hue shift

This commit is contained in:
Ingo Weyrich
2019-08-19 21:17:25 +02:00
parent 5bb207a4f6
commit dab39dae76
6 changed files with 56 additions and 33 deletions

View File

@@ -24,5 +24,5 @@
namespace rtengine
{
void findMinMaxPercentile(const float* data, size_t size, float minPrct, float& minOut, float maxPrct, float& maxOut, bool multiThread = true);
void buildBlendMask(float** luminance, float **blend, int W, int H, float &contrastThreshold, float amount = 1.f, bool autoContrast = false);
void buildBlendMask(const float* const * luminance, float **blend, int W, int H, float &contrastThreshold, float amount = 1.f, bool autoContrast = false);
}