libcamera  v0.2.0+143-d258025d
Supporting cameras in Linux since 2019
bayer_format.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 /*
3  * Copyright (C) 2020, Raspberry Pi Ltd
4  *
5  * Bayer Pixel Format
6  */
7 
8 #pragma once
9 
10 #include <ostream>
11 #include <stdint.h>
12 #include <string>
13 
14 #include <libcamera/pixel_format.h>
15 
17 
18 namespace libcamera {
19 
20 enum class Transform;
21 
23 {
24 public:
25  enum Order : uint8_t {
26  BGGR = 0,
27  GBRG = 1,
28  GRBG = 2,
29  RGGB = 3,
30  MONO = 4
31  };
32 
33  enum class Packing : uint16_t {
34  None = 0,
35  CSI2 = 1,
36  IPU3 = 2,
37  };
38 
39  constexpr BayerFormat()
40  : order(Order::BGGR), bitDepth(0), packing(Packing::None)
41  {
42  }
43 
44  constexpr BayerFormat(Order o, uint8_t b, Packing p)
45  : order(o), bitDepth(b), packing(p)
46  {
47  }
48 
49  static const BayerFormat &fromMbusCode(unsigned int mbusCode);
50  bool isValid() const { return bitDepth != 0; }
51 
52  std::string toString() const;
53 
56  PixelFormat toPixelFormat() const;
59 
61  uint8_t bitDepth;
62 
64 };
65 
66 bool operator==(const BayerFormat &lhs, const BayerFormat &rhs);
67 static inline bool operator!=(const BayerFormat &lhs, const BayerFormat &rhs)
68 {
69  return !(lhs == rhs);
70 }
71 
72 std::ostream &operator<<(std::ostream &out, const BayerFormat &f);
73 
74 } /* namespace libcamera */
Order order
The order of the colour channels in the Bayer pattern.
Definition: bayer_format.h:60
libcamera image pixel format
Definition: pixel_format.h:17
V4L2 pixel format FourCC wrapper.
Definition: v4l2_pixelformat.h:23
bool isValid() const
Return whether a BayerFormat is valid.
Definition: bayer_format.h:50
bool operator==(const ColorSpace &lhs, const ColorSpace &rhs)
Compare color spaces for equality.
Definition: color_space.cpp:506
B then G on the first row, G then R on the second row.
Definition: bayer_format.h:26
Top-level libcamera namespace.
Definition: backtrace.h:17
Transform
Enum to represent a 2D plane transform.
Definition: transform.h:16
Monochrome image data, there is no colour filter array.
Definition: bayer_format.h:30
Packing packing
Any packing scheme applied to this BayerFormat.
Definition: bayer_format.h:63
PixelFormat toPixelFormat() const
Convert a BayerFormat into the corresponding PixelFormat.
Definition: bayer_format.cpp:351
V4L2 Pixel Format.
static BayerFormat fromPixelFormat(PixelFormat format)
Convert a PixelFormat into the corresponding BayerFormat.
Definition: bayer_format.cpp:364
constexpr BayerFormat(Order o, uint8_t b, Packing p)
Construct a BayerFormat from explicit values.
Definition: bayer_format.h:44
std::string toString() const
Assemble and return a readable string representation of the BayerFormat.
Definition: bayer_format.cpp:260
BayerFormat transform(Transform t) const
Apply a transform to this BayerFormat.
Definition: bayer_format.cpp:393
std::ostream & operator<<(std::ostream &out, const Point &p)
Insert a text representation of a Point into an output stream.
Definition: geometry.cpp:91
G then R on the first row, B then G on the second row.
Definition: bayer_format.h:28
Packing
Different types of packing that can be applied to a BayerFormat.
Definition: bayer_format.h:33
static BayerFormat fromV4L2PixelFormat(V4L2PixelFormat v4l2Format)
Convert v4l2Format to the corresponding BayerFormat.
Definition: bayer_format.cpp:335
R then G on the first row, G then B on the second row.
Definition: bayer_format.h:29
V4L2PixelFormat toV4L2PixelFormat() const
Convert a BayerFormat into the corresponding V4L2PixelFormat.
Definition: bayer_format.cpp:321
static const BayerFormat & fromMbusCode(unsigned int mbusCode)
Retrieve the BayerFormat associated with a media bus code.
Definition: bayer_format.cpp:239
G then B on the first row, R then G on the second row.
Definition: bayer_format.h:27
uint8_t bitDepth
The bit depth of the samples in the Bayer pattern.
Definition: bayer_format.h:61
constexpr BayerFormat()
Construct an empty (and invalid) BayerFormat.
Definition: bayer_format.h:39
Order
The order of the colour channels in the Bayer pattern.
Definition: bayer_format.h:25
Class to represent a raw image Bayer format.
Definition: bayer_format.h:22
libcamera pixel format