summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/bell-off.svg
blob: 4b07c84805b4213541abbd94ac68ca80e04a217d (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-bell-off"><path d="M13.73 21a2 2 0 0 1-3.46 0"></path><path d="M18.63 13A17.89 17.89 0 0 1 18 8"></path><path d="M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"></path><path d="M18 8a6 6 0 0 0-9.33-5"></path><line x1="1" y1="1" x2="23" y2="23"></line></svg>
id=651e3fab6329498a7f46703ce5bb92c49cc37624'>plain)
1
2
3
4
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2019, Raspberry Pi (Trading) Limited
 *
 * sharpen.cpp - sharpening control algorithm
 */

#include <math.h>

#include "libcamera/internal/log.h"

#include "../sharpen_status.h"

#include "sharpen.hpp"

using namespace RPiController;
using namespace libcamera;

LOG_DEFINE_CATEGORY(RPiSharpen)

#define NAME "rpi.sharpen"

Sharpen::Sharpen(Controller *controller)
	: SharpenAlgorithm(controller), user_strength_(1.0)
{
}

char const *Sharpen::Name() const
{
	return NAME;
}

void Sharpen::SwitchMode(CameraMode const &camera_mode,
			 [[maybe_unused]] Metadata *metadata)
{
	// can't be less than one, right?
	mode_factor_ = std::max(1.0, camera_mode.noise_factor);
}

void Sharpen::Read(boost::property_tree::ptree const &params)
{
	threshold_ = params.get<double>("threshold", 1.0);
	strength_ = params.get<double>("strength", 1.0);
	limit_ = params.get<double>("limit", 1.0);
	LOG(RPiSharpen, Debug)
		<< "Read threshold " << threshold_
		<< " strength " << strength_
		<< " limit " << limit_;
}

void Sharpen::SetStrength(double strength)
{
	// Note that this method is how an application sets the overall
	// sharpening "strength". We call this the "user strength" field
	// as there already is a strength_ field - being an internal gain
	// parameter that gets passed to the ISP control code. Negative
	// values are not allowed - coerce them to zero (no sharpening).
	user_strength_ = std::max(0.0, strength);
}

void Sharpen::Prepare(Metadata *image_metadata)
{
	// The user_strength_ affects the algorithm's internal gain directly, but
	// we adjust the limit and threshold less aggressively. Using a sqrt
	// function is an arbitrary but gentle way of accomplishing this.
	double user_strength_sqrt = sqrt(user_strength_);
	struct SharpenStatus status;
	// Binned modes seem to need the sharpening toned down with this
	// pipeline, thus we use the mode_factor here. Also avoid
	// divide-by-zero with the user_strength_sqrt.
	status.threshold = threshold_ * mode_factor_ /
			   std::max(0.01, user_strength_sqrt);
	status.strength = strength_ / mode_factor_ * user_strength_;
	status.limit = limit_ / mode_factor_ * user_strength_sqrt;
	// Finally, report any application-supplied parameters that were used.
	status.user_strength = user_strength_;
	image_metadata->Set("sharpen.status", status);
}

// Register algorithm with the system.
static Algorithm *Create(Controller *controller)
{
	return new Sharpen(controller);
}
static RegisterAlgorithm reg(NAME, &Create);