Calculate dual demosaic contrast threshold and log it in console output but don't use it, #4866

This commit is contained in:
heckflosse
2018-10-17 00:17:22 +02:00
parent 601ef585e1
commit 5a30c7e147
3 changed files with 66 additions and 4 deletions

View File

@@ -24,6 +24,6 @@
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);
void buildBlendMask(float** luminance, float **blend, int W, int H, float contrastThreshold, float amount = 1.f, bool autoContrast = false);
int calcContrastThreshold(float** luminance, float **blend, int W, int H);
}