[{"id":37413,"web_url":"https://patchwork.libcamera.org/comment/37413/","msgid":"<cbzwxes5tpnglrfyjzkirxhqllw35pnovn673wunm2zdtvtza7@np76nck7gxq7>","date":"2025-12-16T17:02:18","subject":"Re: [PATCH v5 4/6] ipa: rkisp1: algorithms: dpf: Simplify YAML key\n\tnames","submitter":{"id":143,"url":"https://patchwork.libcamera.org/api/people/143/","name":"Jacopo Mondi","email":"jacopo.mondi@ideasonboard.com"},"content":"Hi Rui\n\nOn Sun, Dec 14, 2025 at 01:16:44PM -0500, Rui Wang wrote:\n> Rename DPF tuning file keys to shorter, more concise names:\n> - DomainFilter -> filter\n> - NoiseLevelFunction -> nll\n> - FilterStrength -> strength\n>\n> This improves readability and reduces verbosity in tuning files\n> while maintaining the same functionality. Error messages are\n> updated accordingly to reflect the new key names.\n>\n> Signed-off-by: Rui Wang <rui.wang@ideasonboard.com>\n\nReviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>\n\nThanks\n  j\n\n> ---\n>  src/ipa/rkisp1/algorithms/dpf.cpp | 14 +++++++-------\n>  1 file changed, 7 insertions(+), 7 deletions(-)\n>\n> diff --git a/src/ipa/rkisp1/algorithms/dpf.cpp b/src/ipa/rkisp1/algorithms/dpf.cpp\n> index 677239ca..4818ef28 100644\n> --- a/src/ipa/rkisp1/algorithms/dpf.cpp\n> +++ b/src/ipa/rkisp1/algorithms/dpf.cpp\n> @@ -130,7 +130,7 @@ int Dpf::parseSingleConfig(const YamlObject &tuningData,\n>  \t * The domain kernel is configured with a 9x9 kernel for the green\n>  \t * pixels, and a 13x9 or 9x9 kernel for red and blue pixels.\n>  \t */\n> -\tconst YamlObject &dFObject = tuningData[\"DomainFilter\"];\n> +\tconst YamlObject &dFObject = tuningData[\"filter\"];\n>\n>  \t/*\n>  \t * For the green component, we have the 9x9 kernel specified\n> @@ -152,7 +152,7 @@ int Dpf::parseSingleConfig(const YamlObject &tuningData,\n>  \tvalues = dFObject[\"g\"].getList<uint8_t>().value_or(std::vector<uint8_t>{});\n>  \tif (values.size() != RKISP1_CIF_ISP_DPF_MAX_SPATIAL_COEFFS) {\n>  \t\tLOG(RkISP1Dpf, Error)\n> -\t\t\t<< \"Invalid 'DomainFilter:g': expected \"\n> +\t\t\t<< \"Invalid 'filter:g': expected \"\n>  \t\t\t<< RKISP1_CIF_ISP_DPF_MAX_SPATIAL_COEFFS\n>  \t\t\t<< \" elements, got \" << values.size();\n>  \t\treturn -EINVAL;\n> @@ -189,7 +189,7 @@ int Dpf::parseSingleConfig(const YamlObject &tuningData,\n>  \tif (values.size() != RKISP1_CIF_ISP_DPF_MAX_SPATIAL_COEFFS &&\n>  \t    values.size() != RKISP1_CIF_ISP_DPF_MAX_SPATIAL_COEFFS - 1) {\n>  \t\tLOG(RkISP1Dpf, Error)\n> -\t\t\t<< \"Invalid 'DomainFilter:rb': expected \"\n> +\t\t\t<< \"Invalid 'filter:rb': expected \"\n>  \t\t\t<< RKISP1_CIF_ISP_DPF_MAX_SPATIAL_COEFFS - 1\n>  \t\t\t<< \" or \" << RKISP1_CIF_ISP_DPF_MAX_SPATIAL_COEFFS\n>  \t\t\t<< \" elements, got \" << values.size();\n> @@ -211,13 +211,13 @@ int Dpf::parseSingleConfig(const YamlObject &tuningData,\n>  \t * which stores a piecewise linear function that characterizes the\n>  \t * sensor noise profile as a noise level function curve (NLF).\n>  \t */\n> -\tconst YamlObject &rFObject = tuningData[\"NoiseLevelFunction\"];\n> +\tconst YamlObject &rFObject = tuningData[\"nll\"];\n>\n>  \tstd::vector<uint16_t> nllValues;\n>  \tnllValues = rFObject[\"coeff\"].getList<uint16_t>().value_or(std::vector<uint16_t>{});\n>  \tif (nllValues.size() != RKISP1_CIF_ISP_DPF_MAX_NLF_COEFFS) {\n>  \t\tLOG(RkISP1Dpf, Error)\n> -\t\t\t<< \"Invalid 'RangeFilter:coeff': expected \"\n> +\t\t\t<< \"Invalid 'nll:coeff': expected \"\n>  \t\t\t<< RKISP1_CIF_ISP_DPF_MAX_NLF_COEFFS\n>  \t\t\t<< \" elements, got \" << nllValues.size();\n>  \t\treturn -EINVAL;\n> @@ -233,13 +233,13 @@ int Dpf::parseSingleConfig(const YamlObject &tuningData,\n>  \t\tconfig.nll.scale_mode = RKISP1_CIF_ISP_NLL_SCALE_LOGARITHMIC;\n>  \t} else {\n>  \t\tLOG(RkISP1Dpf, Error)\n> -\t\t\t<< \"Invalid 'RangeFilter:scale-mode': expected \"\n> +\t\t\t<< \"Invalid 'nll:scale-mode': expected \"\n>  \t\t\t<< \"'linear' or 'logarithmic' value, got \"\n>  \t\t\t<< scaleMode;\n>  \t\treturn -EINVAL;\n>  \t}\n>\n> -\tconst YamlObject &fSObject = tuningData[\"FilterStrength\"];\n> +\tconst YamlObject &fSObject = tuningData[\"strength\"];\n>\n>  \tstrengthConfig.r = fSObject[\"r\"].get<uint8_t>().value_or(64);\n>  \tstrengthConfig.g = fSObject[\"g\"].get<uint8_t>().value_or(64);\n> --\n> 2.43.0\n>","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 5C996BD7D8\n\tfor <parsemail@patchwork.libcamera.org>;\n\tTue, 16 Dec 2025 17:02:22 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 1213D61A19;\n\tTue, 16 Dec 2025 18:02:22 +0100 (CET)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id B13076191D\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 16 Dec 2025 18:02:20 +0100 (CET)","from ideasonboard.com (93-46-82-201.ip106.fastwebnet.it\n\t[93.46.82.201])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 07F7511EF;\n\tTue, 16 Dec 2025 18:02:15 +0100 (CET)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"T8dlFA7z\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1765904535;\n\tbh=VJK2pNqrH4aaSz1y1H7p6EwMW8FWMMwm+yPW/SaFoEQ=;\n\th=Date:From:To:Cc:Subject:References:In-Reply-To:From;\n\tb=T8dlFA7zzUfI5/zsIaqvR3G+PfL0hm3QW38M1nwEtGv93XLORL7bpdlwRoFbjP5N8\n\tx+rFtBsDTUrUL86mT8OkKQH2I39DJLWXwXR5GC3TsDYj0BUse6Xm+D4QlWADwyaFMJ\n\tyfzxDAaDf+3D0hsPOuGLG4I/UZEHB4OqgVeVeMK8=","Date":"Tue, 16 Dec 2025 18:02:18 +0100","From":"Jacopo Mondi <jacopo.mondi@ideasonboard.com>","To":"Rui Wang <rui.wang@ideasonboard.com>","Cc":"libcamera-devel@lists.libcamera.org","Subject":"Re: [PATCH v5 4/6] ipa: rkisp1: algorithms: dpf: Simplify YAML key\n\tnames","Message-ID":"<cbzwxes5tpnglrfyjzkirxhqllw35pnovn673wunm2zdtvtza7@np76nck7gxq7>","References":"<20251214181646.573675-1-rui.wang@ideasonboard.com>\n\t<20251214181646.573675-5-rui.wang@ideasonboard.com>","MIME-Version":"1.0","Content-Type":"text/plain; charset=utf-8","Content-ID":"<idfn2sanionsklgf>","Content-Disposition":"inline","In-Reply-To":"<20251214181646.573675-5-rui.wang@ideasonboard.com>","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}}]