| Message ID | 20260501105137.439519-1-maxbretschneider@protonmail.com |
|---|---|
| Headers | show
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 [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 5E388BDCB5 for <parsemail@patchwork.libcamera.org>; Fri, 1 May 2026 10:52:11 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 726A26301A; Fri, 1 May 2026 12:52:10 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (2048-bit key; unprotected) header.d=protonmail.com header.i=@protonmail.com header.b="sj+SOLBZ"; dkim-atps=neutral Received: from mail-24427.protonmail.ch (mail-24427.protonmail.ch [109.224.244.27]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 446A662FB1 for <libcamera-devel@lists.libcamera.org>; Fri, 1 May 2026 12:52:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1777632727; x=1777891927; bh=lmUytul9b4YVLAayB83ncO8BBNoT1lx5n9QtSCgorWM=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=sj+SOLBZb2Pm6BFrewcHXx9ntC+kADiHlOwUbM0x62rIh2RdoaRVNunS91K7jLCOg 4vDSeLtCm0Lv6LctGmlgrUqtNVMYA25WFR1/4Qc/0HuhfMsQNmZt2NH0dWevSdCdAr PPzfjkyae5dS3gqCjfNKl26XmN9+FTO1z/hWCo1Gw1VDIvjkrELW4W881ASb4Wmwxd Qpgr2P7IWxWNraj+v7V6lCMCnuhEnU9QBIM03F4hKGfxFiLf1huEkGNxCEtCCeC+6s iFJTs/2HmOF+GeYcYXv1rP5mYI3NyFajNGJEXHVUH+Km3HJOzyppGIJLlzR614hDc7 Ry45c1TMPP/QA== Date: Fri, 01 May 2026 10:52:02 +0000 To: libcamera-devel@lists.libcamera.org From: Max Bretschneider <maxbretschneider@protonmail.com> Cc: Max Bretschneider <maxbretschneider@protonmail.com> Subject: [RFC PATCH v1 0/3] libcamera: pipeline: virtual: Add raw Bayer frame support Message-ID: <20260501105137.439519-1-maxbretschneider@protonmail.com> Feedback-ID: 122687743:user:proton X-Pm-Message-ID: a96a602bb22e64a9b9db1c67e7c87cddcf031b15 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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>, <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>, <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> |
| Series |
|
| Related |
show
|
The virtual pipeline handler currently only produces NV12 output, either from test patterns or JPEG files. This means that SoftISP, which processes raw Bayer data, cannot be tested without physical camera hardware. A first step to achieving this would be to support raw streams in the virtual pipeline handler. This series introduces a RawFrameGenerator that reads binary raw Bayer files from disk and serves them through the virtual pipeline. The introduced changes are opt-in through the YAML configuration. If virtual cameras are configured with raw_frames, the new code path is chosen, paths for the existing test_patterns and frames are unaffected. The SoftISP part of this patch's motivation is complemented by David Plowman's series, which introduced the CameraSensorMemory class (https://patchwork.libcamera.org/patch/25468/), since SoftISP needs an actual CameraSensor for correct construction. The idea is that in the future it can be used together to serve Raw frames through the virtual pipeline and process them with SoftISP, for example for CI tests or more easily reproducible benchmarks. Testing: I have used `dd` to create zero filled raw frames to test things such as format negotiation, buffer sizing, general frame flow, config parsing (both right/wrong, e.g. rejecting invalid input) and bit depth handling. I've written a small bash script to essentialy automate this for all n : { 8, 10, 12, 14, 16 } and the four Bayer formats in accordance to `src/libcamera/formats.yaml`. I then used numpy to test the generateFrame() functionality by generating a known frame with content, capturing it through the pipeline to disk with the cam application and then reading the output back again to verify that all the pixels match the expected values. I noticed that the pipeline handler components currently have no dedicated test coverage, if I missed them or if there is some preferred approach for adding additional testing I'd be open to any suggestions. For now I can also share my scripts if thats wanted. Ran `git clang-format` as well as the `checkstyle.py`. I've run the Meson tests both with and without the changes and get the same: Ok: 51 Expected Fail: 1 Fail: 1 Unexpected Pass: 0 Skipped: 29 Timeout: 0 Open questions: - The sensor properties set in match() are currently hardcoded, and I've left them with a \todo. Especially since we've also discussed adding controls such as Exposure and AnalogueGain in "[RFC] Decouple SoftwareISP from CameraSensor for virtual pipeline testing": Should I move these directly to the yaml as well or proceed differently? - I've written a lambda to derive the pixel format, but at this point it has gotten quite large. Maybe this could also be a 2D lookup table or something else that is cleaner. On that lambda also: all cases are covered I think, but the default case is 16, I wasn't sure if 16 should also be made an explicit case and something more sensible should be chosen for the default. - Between the raw_frames and the frames path, the file collection logic is now also duplicated. Should I add a helper here to change this? - Currently every frame is read into framesDatas_ immediately at startup. Depending on the number and the size of the raw files, this could take up quite a lot of memory. For the use cases I thought of (e.g. CI) this would be fine, since the number of files would probably be comparatively small there. Still I wanted to bring it up. - We weren't sure if the SPDX license header is fine like this. For the moment I've just placed my intern company mail, is this fine as is? Documentation: I've added documentation according to the coding-style.rst, if my comments are not sufficient I'd be happy to add more of course. AI Disclosure: I've used DeepWiki to familiarize myself with the libcamera repository and to point me at reference implementations and patterns to use as orientation. Thank you all for your time! Max Bretschneider (3): libcamera: pipeline: virtual: Add RawFrameGenerator libcamera: pipeline: virtual: Add raw_frames config parser support libcamera: pipeline: virtual: Support StreamRole::Raw and Bayer formats .../pipeline/virtual/config_parser.cpp | 100 ++++++++++++- src/libcamera/pipeline/virtual/meson.build | 1 + .../pipeline/virtual/raw_frame_generator.cpp | 132 ++++++++++++++++++ .../pipeline/virtual/raw_frame_generator.h | 47 +++++++ src/libcamera/pipeline/virtual/virtual.cpp | 128 ++++++++++++++--- src/libcamera/pipeline/virtual/virtual.h | 3 +- 6 files changed, 387 insertions(+), 24 deletions(-) create mode 100644 src/libcamera/pipeline/virtual/raw_frame_generator.cpp create mode 100644 src/libcamera/pipeline/virtual/raw_frame_generator.h -- 2.43.0