/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2023-2026 Red Hat Inc. * * Authors: * Hans de Goede * * DebayerParams header */ #pragma once #include #include "libcamera/internal/matrix.h" #include "libcamera/internal/vector.h" namespace libcamera { struct DebayerParams { Matrix combinedMatrix; RGB blackLevel; float gamma; float contrastExp; RGB gains; }; } /* namespace libcamera */