From patchwork Sun Oct 26 23:30:42 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 24828 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 BA58FC32CE for ; Sun, 26 Oct 2025 23:31:05 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id B80836075B; Mon, 27 Oct 2025 00:31:01 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="cLHusOEp"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id D6DA6606F4 for ; Mon, 27 Oct 2025 00:30:54 +0100 (CET) Received: from charm.hippo-penny.ts.net (unknown [209.38.108.23]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 61B7816AE; Mon, 27 Oct 2025 00:29:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1761521347; bh=ZKkzWK8MyPkrNpdZamvE/l+3pW8Upx3O5+XyrBpeLiw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cLHusOEpkACgpkA+++yWIsuazQpQxO1+TTVm8P2dDgmflhmH8hxx/faN105r93Hv7 IQTlPiAKUXCfxF2qMSapiBDSc+cc/NgMcfw4XLrQu+vSC4xAFikVty4su6spnAYlQc 1jUf7wYeHymT4QPquNvE1XdJ4fTDJsZztYHskfKQ= From: Kieran Bingham To: libcamera devel Cc: "van Veen, Stephan" , Kieran Bingham Subject: [PATCH 5/6] libcamera: controls: Define a new core Hue control Date: Sun, 26 Oct 2025 23:30:42 +0000 Message-ID: <20251026233048.175689-6-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20251026233048.175689-1-kieran.bingham@ideasonboard.com> References: <20251026233048.175689-1-kieran.bingham@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: "van Veen, Stephan" Define a new control to support configuration of Hue adjustments when supported by the available platform. Signed-off-by: van Veen, Stephan [Kieran: Rework to define as a rotation in degrees] Signed-off-by: Kieran Bingham --- src/libcamera/control_ids_core.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/libcamera/control_ids_core.yaml b/src/libcamera/control_ids_core.yaml index f781865859ac..4993da14b3f6 100644 --- a/src/libcamera/control_ids_core.yaml +++ b/src/libcamera/control_ids_core.yaml @@ -1346,4 +1346,17 @@ controls: reduces the WdrExposureValue until the amount of pixels that are close to saturation is lower than this value. + - Hue: + type: float + direction: inout + description: | + Adjusts the image hue (colour rotation) in degrees. + + The value specifies a rotation around the colour wheel: + positive values rotate hues counter-clockwise (for example a +60 degree + rotation turns Red hues to Magenta hues), and negative values rotate + clockwise (a -60 degree rotation turns Red hues to Yellow hues). + + A value of 0 leaves the hue unchanged. + ...