From patchwork Wed Mar 26 08:00:32 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 23030 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 8D387C323E for ; Wed, 26 Mar 2025 08:00:50 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 36FA86895E; Wed, 26 Mar 2025 09:00:50 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Q/GJGGEZ"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 145B968952 for ; Wed, 26 Mar 2025 09:00:48 +0100 (CET) Received: from neptunite.flets-east.jp (unknown [IPv6:2404:7a81:160:2100:7402:917d:ea0c:6d4c]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 2992E99F; Wed, 26 Mar 2025 08:58:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1742975940; bh=ZLlCj5BtvNnBwa3s/U1+UcbUZDL7OgMTE+FlKyPtWdY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Q/GJGGEZXX/j/Di9oXw8CNKuTHK0QbBbIOmQ+mEeGtckFiJuVVTNzGrX0KGQrx8OO 0aeRwpO/RogPhBBg4Dq3mgN5DO0xX3rr6m2We2rAz2dtH8oR30dtvyQKkfZfHk8yTY DhL+fMoLmARdWiqGZ91ExaEqGvxN8AQmCxjLvziw= From: Paul Elder To: libcamera-devel@lists.libcamera.org Cc: Kieran Bingham , Paul Elder Subject: [PATCH v2 2/3] test: ipa: libipa: Add CameraSensorHelper Gain Model tests Date: Wed, 26 Mar 2025 17:00:32 +0900 Message-ID: <20250326080034.1733385-3-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250326080034.1733385-1-paul.elder@ideasonboard.com> References: <20250326080034.1733385-1-paul.elder@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" From: Kieran Bingham Introduce a test that validates conversion of the gain model in each CameraSensorHelper. It should be expected that if a gainCode produces a given gain value, then converting that gain back should produce the same result. This test fails on the following CameraSensorHelpers: - imx219 imx258 imx283 imx290 imx296 imx327 imx335 imx477 Signed-off-by: Kieran Bingham Signed-off-by: Paul Elder --- Discussion points: - Should we duplicate the min/max gain values for all the sensors in the CameraSensorHelpers? (instead of using 0~240 that comes from the imx283) Is it fine to duplicate it anyway because we're already duplicating a lot of other sensor propery values? - Should we restrict the test to a specific set of sensors so that we don't have to deal with breaking tests from, for example, sensors that use gains of different Q formats or non-continuous ranges etc? Or should we test everything and diligently fix the test for every new sensor so that we're sure that nothing breaks? Changes in v2: - recover from bitrot --- test/ipa/camera_sensor_helper.cpp | 69 +++++++++++++++++++++++++++++++ test/ipa/meson.build | 1 + 2 files changed, 70 insertions(+) create mode 100644 test/ipa/camera_sensor_helper.cpp diff --git a/test/ipa/camera_sensor_helper.cpp b/test/ipa/camera_sensor_helper.cpp new file mode 100644 index 000000000000..2d37628f87c4 --- /dev/null +++ b/test/ipa/camera_sensor_helper.cpp @@ -0,0 +1,69 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * Copyright (C) 2024, Ideas on Board Oy. + */ + +#include "libipa/camera_sensor_helper.h" + +#include +#include + +#include "test.h" + +using namespace std; +using namespace libcamera; +using namespace libcamera::ipa; + +class CameraSensorHelperTest : public Test +{ +protected: + int testGainModel(std::string model) + { + int ret = TestPass; + + std::unique_ptr camHelper_; + + camHelper_ = CameraSensorHelperFactoryBase::create(model); + if (!camHelper_) { + std::cout + << "Failed to create camera sensor helper for " + << model; + return TestFail; + } + + for (unsigned int i = 0; i < 240; i++) { + float gain = camHelper_->gain(i); + uint32_t gainCode = camHelper_->gainCode(gain); + + if (i != gainCode) { + std::cout << model << ": Gain conversions failed: " + << i << " : " << gain << " : " + << gainCode << std::endl; + + ret = TestFail; + } + }; + + return ret; + } + + int run() override + { + unsigned int failures = 0; + + std::vector factories; + + for (auto factory : CameraSensorHelperFactoryBase::factories()) { + const std::string &model = factory->name(); + + cout << "Testing CameraSensorHelper for " << model << endl; + + if (testGainModel(factory->name()) == TestFail) + failures++; + } + + return failures ? TestFail : TestPass; + } +}; + +TEST_REGISTER(CameraSensorHelperTest) diff --git a/test/ipa/meson.build b/test/ipa/meson.build index ceed15ba660a..98aff58b8a1a 100644 --- a/test/ipa/meson.build +++ b/test/ipa/meson.build @@ -3,6 +3,7 @@ subdir('libipa') ipa_test = [ + {'name': 'camera_sensor_helper', 'sources': ['camera_sensor_helper.cpp']}, {'name': 'ipa_module_test', 'sources': ['ipa_module_test.cpp']}, {'name': 'ipa_interface_test', 'sources': ['ipa_interface_test.cpp']}, ]