summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/figma.svg
AgeCommit message (Expand)Author
2020-02-14qcam: assets: Provide initial icon setKieran Bingham
a id='n5' href='#n5'>5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/* 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;
	int read(const libcamera::YamlObject &params) override;
	void initialise() override;
	void prepare(Metadata *imageMetadata) override;
	void setMode(DenoiseMode mode) override;

private:
	double deviation_;
	double strength_;
	DenoiseMode mode_;
};

} /* namespace RPiController */