1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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; };