f95bae418c
s/Raspberry Pi (Trading) Limited/Raspberry Pi Ltd/ to reflect the new Raspberry Pi entity name. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
33 lines
725 B
C++
33 lines
725 B
C++
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
/*
|
|
* Copyright (C) 2019, Raspberry Pi Ltd
|
|
*
|
|
* sdn.h - SDN (spatial denoise) control algorithm
|
|
*/
|
|
#pragma once
|
|
|
|
#include "../algorithm.h"
|
|
#include "../denoise_algorithm.h"
|
|
|
|
namespace RPiController {
|
|
|
|
/* Algorithm to calculate correct spatial denoise (SDN) settings. */
|
|
|
|
class Sdn : public DenoiseAlgorithm
|
|
{
|
|
public:
|
|
Sdn(Controller *controller = NULL);
|
|
char const *name() const override;
|
|
void read(boost::property_tree::ptree const ¶ms) override;
|
|
void initialise() override;
|
|
void prepare(Metadata *imageMetadata) override;
|
|
void setMode(DenoiseMode mode) override;
|
|
|
|
private:
|
|
double deviation_;
|
|
double strength_;
|
|
DenoiseMode mode_;
|
|
};
|
|
|
|
} /* namespace RPiController */
|