Remove timing code
This commit is contained in:
parent
1ed9444e3e
commit
49937a589f
@ -24,14 +24,12 @@
|
||||
|
||||
#include "rawimagesource.h"
|
||||
#include "rt_math.h"
|
||||
#define BENCHMARK
|
||||
#include "StopWatch.h"
|
||||
|
||||
using namespace rtengine;
|
||||
|
||||
void RawImageSource::bayer_bilinear_demosaic(const float* const * blend, const array2D<float> &rawData, array2D<float> &red, array2D<float> &green, array2D<float> &blue)
|
||||
{
|
||||
BENCHFUN
|
||||
|
||||
#ifdef _OPENMP
|
||||
#pragma omp parallel for
|
||||
#endif
|
||||
|
@ -33,9 +33,6 @@
|
||||
|
||||
#include "../rtgui/options.h"
|
||||
|
||||
#define BENCHMARK
|
||||
#include "StopWatch.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace rtengine
|
||||
@ -43,7 +40,6 @@ namespace rtengine
|
||||
|
||||
void RawImageSource::dual_demosaic_RT(bool isBayer, const procparams::RAWParams &raw, int winw, int winh, const array2D<float> &rawData, array2D<float> &red, array2D<float> &green, array2D<float> &blue, double &contrast, bool autoContrast)
|
||||
{
|
||||
BENCHFUN
|
||||
|
||||
if (contrast == 0.0 && !autoContrast) {
|
||||
// contrast == 0.0 means only first demosaicer will be used
|
||||
|
Loading…
x
Reference in New Issue
Block a user