blob: 13c7e0e877fd954600d310783e7657f43e53ef79 (
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
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2021, Red Hat
*
* af.h - IPU3 Af algorithm
*/
#pragma once
#include <linux/intel-ipu3.h>
#include <libcamera/base/utils.h>
#include <libcamera/geometry.h>
#include "algorithm.h"
/* Static variables from repo of chromium */
static constexpr uint8_t kAfMinGridWidth = 16;
static constexpr uint8_t kAfMinGridHeight = 16;
static constexpr uint8_t kAfMaxGridWidth = 32;
static constexpr uint8_t kAfMaxGridHeight = 24;
static constexpr uint16_t kAfMinGridBlockWidth = 4;
static constexpr uint16_t kAfMinGridBlockHeight = 3;
static constexpr uint16_t kAfMaxGridBlockWidth = 6;
static constexpr uint16_t kAfMaxGridBlockHeight = 6;
static constexpr uint16_t kAfDefaultHeightPerSlice = 2;
namespace libcamera {
namespace ipa::ipu3::algorithms {
class Af : public Algorithm
{
/* The format of y_table. From ipu3-ipa repo */
typedef struct __attribute__((packed)) y_table_item {
uint16_t y1_avg;
uint16_t y2_avg;
} y_table_item_t;
public:
Af();
~Af() = default;
void prepare(IPAContext &context, ipu3_uapi_params *params) override;
int configure(IPAContext &context, const IPAConfigInfo &configInfo) override;
void process(IPAContext &context, const ipu3_uapi_stats_3a *stats) override;
private:
void afCoarseScan(IPAContext &context);
void afFineScan(IPAContext &context);
bool afScan(IPAContext &context, int min_step);
void afReset(IPAContext &context);
bool afNeedIgnoreFrame();
void afIgnoreFrameReset();
double afEstimateVariance(y_table_item_t *y_item, uint32_t len,
bool isY1);
bool afIsOutOfFocus(IPAContext context);
/* VCM step configuration. It is the current setting of the VCM step. */
uint32_t focus_;
/* The best VCM step. It is a local optimum VCM step during scanning. */
uint32_t bestFocus_;
/* Current AF statistic variance. */
double currentVariance_;
/* The frames are ignore before starting measuring. */
uint32_t ignoreCounter_;
/* It is used to determine the derivative during scanning */
double previousVariance_;
/* The designated maximum range of focus scanning. */
uint32_t maxStep_;
/* If the coarse scan completes, it is set to true. */
bool coarseCompleted_;
/* If the fine scan completes, it is set to true. */
bool fineCompleted_;
};
} /* namespace ipa::ipu3::algorithms */
} /* namespace libcamera */
|