From patchwork Wed Mar 23 13:56:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 15520 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 41A8DC3264 for ; Wed, 23 Mar 2022 13:56:25 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 546AC604DC; Wed, 23 Mar 2022 14:56:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1648043783; bh=rq/501rDmA76E3DPYoKB5MxCRbLMz8+YX2gCqye4RxM=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=CA2yoesZhMcFmzWwTJUdD/J4ctRn2B1f5L2wkyttNuDEtgng92g7flHLi4bGjLz1k AQTTmJBHhE6PWQ9sW0zWsrybRW77wWNsCiCRi9HEMZQWvNpUsBz3QpBqqEaZYHziGy iodU1txEaPv//TauF/Wou1ti0QzA6vScnV71L7XIWN70nJuXbiwfgjMxi6h+xcVRMc OtJziPcsdEcdU0+3pIuG6pqRwt8VfHWGhNAMEEQn98VxbhuzxVP2tfWWp6riFlYgVj f1lvzaYyON/kKP98rPOrY5kP7oRLNP5j2wlHoVIrYfOvOpV1ECBH9F1wuT4fXz+rX3 rMFb0AaJdmsew== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 08307604C4 for ; Wed, 23 Mar 2022 14:56:21 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="VDWxlG0E"; dkim-atps=neutral Received: from Monstersaurus.ksquared.org.uk.beta.tailscale.net (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9E42E130D; Wed, 23 Mar 2022 14:56:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1648043780; bh=rq/501rDmA76E3DPYoKB5MxCRbLMz8+YX2gCqye4RxM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VDWxlG0E/pGKS0OT3bYlXETY4x/r1HPOO1W2qcwfB+BTe8tIunNiYZ6VrTyeMmHNh jw1xenNr537G3JJ243llPnG41PkSi6D/1Rbz5TP0FHznZYrb0g8MzRecWIySECHrIh sYDu0BRWqHsE1iMM7O9BusUe392RuPrk9cbpBOFw= To: libcamera devel Date: Wed, 23 Mar 2022 13:56:11 +0000 Message-Id: <20220323135614.865252-3-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220323135614.865252-1-kieran.bingham@ideasonboard.com> References: <20220323135614.865252-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 2/5] ipa: ipu3: af: Use geometry classes to perform grid centering 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: , X-Patchwork-Original-From: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Use our geometry classes for Rectangle, Size and Point to identify the region of interest for the autofocus, and center it on the BDS output. This will facilitate custom ROI being passed in through controls at a later time. Reviewed-by: Laurent Pinchart Signed-off-by: Kieran Bingham --- src/ipa/ipu3/algorithms/af.cpp | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/ipa/ipu3/algorithms/af.cpp b/src/ipa/ipu3/algorithms/af.cpp index 634d0f2e3176..f5a489412a9e 100644 --- a/src/ipa/ipu3/algorithms/af.cpp +++ b/src/ipa/ipu3/algorithms/af.cpp @@ -141,16 +141,23 @@ int Af::configure(IPAContext &context, const IPAConfigInfo &configInfo) grid.block_height_log2 = kAfMinGridBlockHeight; grid.height_per_slice = kAfDefaultHeightPerSlice; - /* x_start and y start are default to BDS center */ - grid.x_start = (configInfo.bdsOutputSize.width / 2) - - (((grid.width << grid.block_width_log2) / 2)); - grid.y_start = (configInfo.bdsOutputSize.height / 2) - - (((grid.height << grid.block_height_log2) / 2)); + /* Position the AF grid in the center of the BDS output. */ + Rectangle bds(configInfo.bdsOutputSize); + Size gridSize(grid.width << grid.block_width_log2, + grid.height << grid.block_height_log2); + + /* + * \todo - Support request metadata + * - Set the ROI based on any input controls in the request + * - Return the AF ROI as metadata in the Request + */ + Rectangle roi = gridSize.centeredTo(bds.center()); + Point start = roi.topLeft(); /* x_start and y_start should be even */ - grid.x_start = (grid.x_start / 2) * 2; - grid.y_start = (grid.y_start / 2) * 2; - grid.y_start = grid.y_start | IPU3_UAPI_GRID_Y_START_EN; + grid.x_start = utils::alignDown(start.x, 2); + grid.y_start = utils::alignDown(start.y, 2); + grid.y_start |= IPU3_UAPI_GRID_Y_START_EN; /* Initial max focus step */ maxStep_ = kMaxFocusSteps;