summaryrefslogtreecommitdiff
path: root/src/ipa/libipa/algorithms/af_algorithm.cpp
blob: 47e54d5a5fee835f5a8cc9c4ddba4997cfa0a45c (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
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2022, Raspberry Pi (Trading) Limited
 * Copyright (C) 2022, Theobroma Systems
 *
 * af_algorithm.cpp - Autofocus control algorithm interface
 */

#include "af_algorithm.h"

/**
 * \file af_algorithm.h
 * \brief AF algorithm common interface
 */

namespace libcamera::ipa::common::algorithms {

/**
 * \class AfAlgorithm
 * \brief Common interface for auto-focus algorithms
 * \tparam Module The IPA module type for this class of algorithms
 *
 * The AfAlgorithm class defines a standard interface for IPA auto focus
 * algorithms.
 */

/**
 * \fn AfAlgorithm::setMode()
 * \brief Set auto focus mode
 * \param[in] mode AF mode
 */

/**
 * \fn AfAlgorithm::setRange()
 * \brief set the range of focus distances that is scanned
 * \param[in] range AF range
 */

/**
 * \fn AfAlgorithm::setSpeed()
 * \brief Set how fast algorithm should move the lens
 * \param[in] speed Lens move speed
 */

/**
 * \fn AfAlgorithm::setMetering()
 * \brief Set AF metering mode
 * \param[in] metering AF metering mode
 */

/**
 * \fn AfAlgorithm::setWindows()
 * \brief Set AF windows
 * \param[in] windows AF windows
 *
 * Sets the focus windows used by the AF algorithm when AfMetering is set
 * to AfMeteringWindows.
 */

/**
 * \fn AfAlgorithm::setTrigger()
 * \brief Starts or cancels the autofocus scan
 * \param[in] trigger Trigger mode
 */

/**
 * \fn AfAlgorithm::setPause()
 * \brief Pause the autofocus while in AfModeContinuous mode.
 * \param[in] pause Pause mode
 */

/**
 * \fn AfAlgorithm::setLensPosition()
 * \brief Set the lens position while in AfModeManual
 * \param[in] lensPosition Lens position
 */

} /* namespace libcamera::ipa::common::algorithms */