index
:
libcamera/libcamera.git
master
libcamera official repository
git repository hosting on libcamera.org
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
utils
/
ipc
/
mojo
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2023 Raspberry Pi Ltd
*
* CAC (Chromatic Abberation Correction) algorithm status
*/
#pragma once
#include
"pwl.h"
struct
CacStatus
{
std
::
vector
<
double
>
lutRx
;
std
::
vector
<
double
>
lutRy
;
std
::
vector
<
double
>
lutBx
;
std
::
vector
<
double
>
lutBy
;
};