diff options
Diffstat (limited to 'src/ipa/simple/black_level.h')
-rw-r--r-- | src/ipa/simple/black_level.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/ipa/simple/black_level.h b/src/ipa/simple/black_level.h deleted file mode 100644 index 25094217..00000000 --- a/src/ipa/simple/black_level.h +++ /dev/null @@ -1,28 +0,0 @@ -/* SPDX-License-Identifier: LGPL-2.1-or-later */ -/* - * Copyright (C) 2024, Red Hat Inc. - * - * black level handling - */ - -#pragma once - -#include <array> - -#include "libcamera/internal/software_isp/swisp_stats.h" - -namespace libcamera { - -class BlackLevel -{ -public: - BlackLevel(); - unsigned int get() const; - void update(SwIspStats::Histogram &yHistogram); - -private: - unsigned int blackLevel_; - bool blackLevelSet_; -}; - -} /* namespace libcamera */ |