Amaze+VNG4: created own entry in demosaic combobox, cleaned code

This commit is contained in:
heckflosse
2018-05-29 16:59:29 +02:00
parent 710dd13c2f
commit 2a13d12936
10 changed files with 147 additions and 193 deletions

View File

@@ -20,10 +20,10 @@
#pragma once
#include <cstddef>
#include "jaggedarray.h"
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, rtengine::JaggedArray<float> &blend, int W, int H, float contrastThreshold, float amount = 1.f);
}