mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-18 01:45:10 +03:00
This change is in anticipation of the addition of a DenoiseAlgorithm base class which the SDN class will derive from. We want to match the metadata object name with the base class algorithm name. This renames: - SdnStatus metadata object to DenoiseStatus - "sdn.status" metadata string key to "denoise.status" - sdn_status.h header file to denoise_status.h Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
/*
|
|
* Copyright (C) 2019, Raspberry Pi (Trading) Limited
|
|
*
|
|
* sdn.cpp - SDN (spatial denoise) control algorithm
|
|
*/
|
|
|
|
#include "libcamera/internal/log.h"
|
|
|
|
#include "../denoise_status.h"
|
|
#include "../noise_status.h"
|
|
|
|
#include "sdn.hpp"
|
|
|
|
using namespace RPiController;
|
|
using namespace libcamera;
|
|
|
|
LOG_DEFINE_CATEGORY(RPiSdn)
|
|
|
|
// Calculate settings for the spatial denoise block using the noise profile in
|
|
// the image metadata.
|
|
|
|
#define NAME "rpi.sdn"
|
|
|
|
Sdn::Sdn(Controller *controller)
|
|
: Algorithm(controller)
|
|
{
|
|
}
|
|
|
|
char const *Sdn::Name() const
|
|
{
|
|
return NAME;
|
|
}
|
|
|
|
void Sdn::Read(boost::property_tree::ptree const ¶ms)
|
|
{
|
|
deviation_ = params.get<double>("deviation", 3.2);
|
|
strength_ = params.get<double>("strength", 0.75);
|
|
}
|
|
|
|
void Sdn::Initialise() {}
|
|
|
|
void Sdn::Prepare(Metadata *image_metadata)
|
|
{
|
|
struct NoiseStatus noise_status = {};
|
|
noise_status.noise_slope = 3.0; // in case no metadata
|
|
if (image_metadata->Get("noise.status", noise_status) != 0)
|
|
LOG(RPiSdn, Warning) << "no noise profile found";
|
|
LOG(RPiSdn, Debug)
|
|
<< "Noise profile: constant " << noise_status.noise_constant
|
|
<< " slope " << noise_status.noise_slope;
|
|
struct DenoiseStatus status;
|
|
status.noise_constant = noise_status.noise_constant * deviation_;
|
|
status.noise_slope = noise_status.noise_slope * deviation_;
|
|
status.strength = strength_;
|
|
image_metadata->Set("denoise.status", status);
|
|
LOG(RPiSdn, Debug)
|
|
<< "programmed constant " << status.noise_constant
|
|
<< " slope " << status.noise_slope
|
|
<< " strength " << status.strength;
|
|
}
|
|
|
|
// Register algorithm with the system.
|
|
static Algorithm *Create(Controller *controller)
|
|
{
|
|
return (Algorithm *)new Sdn(controller);
|
|
}
|
|
static RegisterAlgorithm reg(NAME, &Create);
|