File: agc.py

package info (click to toggle)
libcamera 0.4.0-7
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 11,904 kB
  • sloc: cpp: 75,318; python: 17,996; ansic: 12,593; sh: 1,258; makefile: 56
file content (21 lines) | stat: -rw-r--r-- 457 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SPDX-License-Identifier: BSD-2-Clause
#
# Copyright (C) 2019, Raspberry Pi Ltd
# Copyright (C) 2024, Paul Elder <paul.elder@ideasonboard.com>

from ..module import Module

import libtuning as lt


class AGC(Module):
    type = 'agc'
    hr_name = 'AGC (Base)'
    out_name = 'GenericAGC'

    # \todo Add sector shapes and stuff just like lsc
    def __init__(self, *,
                 debug: list):
        super().__init__()

        self.debug = debug