summaryrefslogtreecommitdiff
path: root/src/ipa/rpi/controller/cac_status.h
blob: adffce411a465085318ec9042570aae2129ebd79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2023 Raspberry Pi Ltd
 *
 * CAC (Chromatic Abberation Correction) algorithm status
 */
#pragma once

struct CacStatus {
	std::vector<double> lutRx;
	std::vector<double> lutRy;
	std::vector<double> lutBx;
	std::vector<double> lutBy;
};