From patchwork Fri Sep 18 12:09:49 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 28359 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id A5F8CC3367 for ; Fri, 18 Sep 2026 12:10:24 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id C8935688C5; Fri, 18 Sep 2026 14:10:21 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="XTBqIwWC"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A76236874B for ; Fri, 18 Sep 2026 14:09:58 +0200 (CEST) Received: from pb-laptop.local (185.221.142.0.nat.pool.zt.hu [185.221.142.0]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CAC1F4F09 for ; Fri, 18 Sep 2026 14:08:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1789733295; bh=7R0a35A2rW5sTAqCVnEA7Gyt0lYyuF+uWcQ1K4rBcwI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=XTBqIwWC5Cy/5idbZQZvImvj+IcvFaA6o82/zaqK07v2dvVMqU6Cg/1MCmLhhwbjD nG6cdCFQdV3bZsIZ7kUGQvbP5+QUTPrQgydY2CtLNdiZzY0wz4cV6vRkORHMenTWEM 9D/sm17VHaMWIKI/Och5009pPfR6Oqs/4SiZJlos= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= To: libcamera-devel@lists.libcamera.org Subject: [PATCH v3 21/21] ipa: rppx1: Add uncalibrated tuning file Date: Fri, 18 Sep 2026 14:09:49 +0200 Message-ID: <20260918120949.191668-22-barnabas.pocze@ideasonboard.com> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260918120949.191668-1-barnabas.pocze@ideasonboard.com> References: <20260918120949.191668-1-barnabas.pocze@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Enable algorithms that don't need any specific tuning data. Signed-off-by: Barnabás Pőcze --- src/ipa/rppx1/data/meson.build | 1 + src/ipa/rppx1/data/uncalibrated.yaml | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 src/ipa/rppx1/data/uncalibrated.yaml diff --git a/src/ipa/rppx1/data/meson.build b/src/ipa/rppx1/data/meson.build index d1eb321758..b18511441b 100644 --- a/src/ipa/rppx1/data/meson.build +++ b/src/ipa/rppx1/data/meson.build @@ -1,6 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 conf_files = files([ + 'uncalibrated.yaml', ]) install_data(conf_files, diff --git a/src/ipa/rppx1/data/uncalibrated.yaml b/src/ipa/rppx1/data/uncalibrated.yaml new file mode 100644 index 0000000000..3057df83b0 --- /dev/null +++ b/src/ipa/rppx1/data/uncalibrated.yaml @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: CC0-1.0 +%YAML 1.1 +--- +version: 1 +algorithms: + - Agc: + - Awb: + - BlackLevelCorrection: + - Ccm: + - GammaOutCorrection: +...