blob: beed47a1e1c42ba470d427a774be6b9228fa2c24 (
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
|
/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2019, Raspberry Pi Ltd
*
* ISP control algorithms
*/
#include "algorithm.h"
using namespace RPiController;
int Algorithm::read([[maybe_unused]] const libcamera::YamlObject ¶ms)
{
return 0;
}
void Algorithm::initialise()
{
}
void Algorithm::switchMode([[maybe_unused]] CameraMode const &cameraMode,
[[maybe_unused]] Metadata *metadata)
{
}
void Algorithm::prepare([[maybe_unused]] Metadata *imageMetadata)
{
}
void Algorithm::process([[maybe_unused]] StatisticsPtr &stats,
[[maybe_unused]] Metadata *imageMetadata)
{
}
/* For registering algorithms with the system: */
namespace {
std::map<std::string, AlgoCreateFunc> &algorithms()
{
static std::map<std::string, AlgoCreateFunc> algorithms;
return algorithms;
}
} /* namespace */
std::map<std::string, AlgoCreateFunc> const &RPiController::getAlgorithms()
{
return algorithms();
}
RegisterAlgorithm::RegisterAlgorithm(char const *name,
AlgoCreateFunc createFunc)
{
algorithms()[std::string(name)] = createFunc;
}
|