blob: f7fc5b271de8173c97b371eac9c042e5f95e0f7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2021, Ideas on Board Oy
*
* image.h - Multi-planar image with access to pixel data
*/
#ifndef __CAM_IMAGE_H__
#define __CAM_IMAGE_H__
#include <memory>
#include <stdint.h>
#include <vector>
#include <libcamera/base/class.h>
#include <libcamera/base/flags.h>
#include <libcamera/base/span.h>
#include <libcamera/framebuffer.h>
class Image
{
public:
enum class MapMode {
ReadOnly = 1 << 0,
WriteOnly = 1 << 1,
ReadWrite = ReadOnly | WriteOnly,
};
static std::unique_ptr<Image> fromFrameBuffer(const libcamera::FrameBuffer *buffer,
MapMode mode);
~Image();
unsigned int numPlanes() const;
libcamera::Span<uint8_t> data(unsigned int plane);
libcamera::Span<const uint8_t> data(unsigned int plane) const;
private:
LIBCAMERA_DISABLE_COPY(Image)
Image();
std::vector<libcamera::Span<uint8_t>> maps_;
std::vector<libcamera::Span<uint8_t>> planes_;
};
namespace libcamera {
LIBCAMERA_FLAGS_ENABLE_OPERATORS(Image::MapMode)
}
#endif /* __CAM_IMAGE_H__ */
|