{"id":22981,"url":"https://patchwork.libcamera.org/api/1.1/patches/22981/?format=json","web_url":"https://patchwork.libcamera.org/patch/22981/","project":{"id":1,"url":"https://patchwork.libcamera.org/api/1.1/projects/1/?format=json","name":"libcamera","link_name":"libcamera","list_id":"libcamera_core","list_email":"libcamera-devel@lists.libcamera.org","web_url":"","scm_url":"","webscm_url":""},"msgid":"<20250319161152.63625-4-stefan.klug@ideasonboard.com>","date":"2025-03-19T16:11:08","name":"[v2,03/17] libcamera: matrix: Add a Span based constructor","commit_ref":null,"pull_url":null,"state":"superseded","archived":false,"hash":"3c642c3e74f978e629a650cce07862b1a498b21e","submitter":{"id":184,"url":"https://patchwork.libcamera.org/api/1.1/people/184/?format=json","name":"Stefan Klug","email":"stefan.klug@ideasonboard.com"},"delegate":null,"mbox":"https://patchwork.libcamera.org/patch/22981/mbox/","series":[{"id":5071,"url":"https://patchwork.libcamera.org/api/1.1/series/5071/?format=json","web_url":"https://patchwork.libcamera.org/project/libcamera/list/?series=5071","date":"2025-03-19T16:11:05","name":"Some rkisp1 awb improvements","version":2,"mbox":"https://patchwork.libcamera.org/series/5071/mbox/"}],"comments":"https://patchwork.libcamera.org/api/patches/22981/comments/","check":"pending","checks":"https://patchwork.libcamera.org/api/patches/22981/checks/","tags":{},"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 8B61FC32FE\n\tfor <parsemail@patchwork.libcamera.org>;\n\tWed, 19 Mar 2025 16:12:07 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 3839C68956;\n\tWed, 19 Mar 2025 17:12:07 +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 BFD7968950\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed, 19 Mar 2025 17:12:05 +0100 (CET)","from ideasonboard.com (unknown\n\t[IPv6:2a00:6020:448c:6c00:760:e5ca:4814:99c7])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id D00548FA;\n\tWed, 19 Mar 2025 17:10:22 +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=\"v+vnFvqP\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1742400622;\n\tbh=UwDt89XFx7PIoRfW4bceJOVjymlThJ3lPWKM60WujCU=;\n\th=From:To:Cc:Subject:Date:In-Reply-To:References:From;\n\tb=v+vnFvqPZTqH+eJIYmw1HKqOINy8QJy37uk9alOODZ2Pz0q+vQiYSwXxpIWA+B/dF\n\tm0e2Ffs7EWLjNWNU8eomQilNbR3pHXdFRaz+kP0lDuXTD2+qZXWRE8saCTI53VIY7i\n\tVoauD4OUGE0oHTXhdGdDcb4681CIsWK2xDLE+PR4=","From":"Stefan Klug <stefan.klug@ideasonboard.com>","To":"libcamera-devel@lists.libcamera.org","Cc":"Stefan Klug <stefan.klug@ideasonboard.com>","Subject":"[PATCH v2 03/17] libcamera: matrix: Add a Span based constructor","Date":"Wed, 19 Mar 2025 17:11:08 +0100","Message-ID":"<20250319161152.63625-4-stefan.klug@ideasonboard.com>","X-Mailer":"git-send-email 2.43.0","In-Reply-To":"<20250319161152.63625-1-stefan.klug@ideasonboard.com>","References":"<20250319161152.63625-1-stefan.klug@ideasonboard.com>","MIME-Version":"1.0","Content-Transfer-Encoding":"8bit","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>"},"content":"When one wants to create a Matrix from existing data, currently the only\nway is via std::array. Add a Span based constructor to allow creation\nfrom vectors and alike.\n\nSigned-off-by: Stefan Klug <stefan.klug@ideasonboard.com>\n\n---\n\nChanges in v2:\n- Added this patch\n---\n include/libcamera/internal/matrix.h |  5 +++++\n src/libcamera/matrix.cpp            | 10 ++++++++++\n 2 files changed, 15 insertions(+)","diff":"diff --git a/include/libcamera/internal/matrix.h b/include/libcamera/internal/matrix.h\nindex 2e7929e9060c..9b80521e3cb0 100644\n--- a/include/libcamera/internal/matrix.h\n+++ b/include/libcamera/internal/matrix.h\n@@ -34,6 +34,11 @@ public:\n \t\tstd::copy(data.begin(), data.end(), data_.begin());\n \t}\n \n+\tMatrix(const Span<const T, Rows * Cols> &data)\n+\t{\n+\t\tstd::copy(data.begin(), data.end(), data_.begin());\n+\t}\n+\n \tstatic constexpr Matrix identity()\n \t{\n \t\tMatrix ret;\ndiff --git a/src/libcamera/matrix.cpp b/src/libcamera/matrix.cpp\nindex e7e027225666..6dca7498cab3 100644\n--- a/src/libcamera/matrix.cpp\n+++ b/src/libcamera/matrix.cpp\n@@ -41,6 +41,16 @@ LOG_DEFINE_CATEGORY(Matrix)\n  * number of rows and columns of the matrix (Rows x Cols).\n  */\n \n+/**\n+ * \\fn Matrix::Matrix(const Span<const T, Rows * Cols> &data)\n+ * \\brief Construct a matrix from supplied data\n+ * \\param[in] data Data from which to construct a matrix\n+ *\n+ * \\a data is a one-dimensional Span and will be turned into a matrix in\n+ * row-major order. The size of \\a data must be equal to the product of the\n+ * number of rows and columns of the matrix (Rows x Cols).\n+ */\n+\n /**\n  * \\fn Matrix::identity()\n  * \\brief Construct an identity matrix\n","prefixes":["v2","03/17"]}