utils: tuning: rkisp1: Replace static AWB with new AWB module
The rkisp1 tuner used a static module to insert the AWB algorithm into the tuning file. Replace that with the new AWB module. Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
b1ec488f1b
commit
6efbe35de5
1 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
#
|
#
|
||||||
# Copyright (C) 2022, Paul Elder <paul.elder@ideasonboard.com>
|
# Copyright (C) 2022, Paul Elder <paul.elder@ideasonboard.com>
|
||||||
|
# Copyright (C) 2024, Ideas On Board
|
||||||
#
|
#
|
||||||
# Tuning script for rkisp1
|
# Tuning script for rkisp1
|
||||||
|
|
||||||
|
@ -14,13 +15,14 @@ from libtuning.parsers import YamlParser
|
||||||
from libtuning.generators import YamlOutput
|
from libtuning.generators import YamlOutput
|
||||||
from libtuning.modules.lsc import LSCRkISP1
|
from libtuning.modules.lsc import LSCRkISP1
|
||||||
from libtuning.modules.agc import AGCRkISP1
|
from libtuning.modules.agc import AGCRkISP1
|
||||||
|
from libtuning.modules.awb import AWBRkISP1
|
||||||
from libtuning.modules.ccm import CCMRkISP1
|
from libtuning.modules.ccm import CCMRkISP1
|
||||||
from libtuning.modules.static import StaticModule
|
from libtuning.modules.static import StaticModule
|
||||||
|
|
||||||
coloredlogs.install(level=logging.INFO, fmt='%(name)s %(levelname)s %(message)s')
|
coloredlogs.install(level=logging.INFO, fmt='%(name)s %(levelname)s %(message)s')
|
||||||
|
|
||||||
agc = AGCRkISP1(debug=[lt.Debug.Plot])
|
agc = AGCRkISP1(debug=[lt.Debug.Plot])
|
||||||
awb = StaticModule('Awb')
|
awb = AWBRkISP1(debug=[lt.Debug.Plot])
|
||||||
blc = StaticModule('BlackLevelCorrection')
|
blc = StaticModule('BlackLevelCorrection')
|
||||||
ccm = CCMRkISP1(debug=[lt.Debug.Plot])
|
ccm = CCMRkISP1(debug=[lt.Debug.Plot])
|
||||||
color_processing = StaticModule('ColorProcessing')
|
color_processing = StaticModule('ColorProcessing')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue