libcamera v0.0.0+3240-f2a18172-dirty (2022-05-13T19:42:47+00:00)
Supporting cameras in Linux since 2019
ipa_interface.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2/*
3 * Copyright (C) 2019, Google Inc.
4 *
5 * ipa_interface.h - Image Processing Algorithm interface
6 */
7#ifndef __LIBCAMERA_IPA_INTERFACE_H__
8#define __LIBCAMERA_IPA_INTERFACE_H__
9
10#include <stddef.h>
11#include <stdint.h>
12
13#include <map>
14#include <vector>
15
17
18#include <libcamera/controls.h>
20#include <libcamera/geometry.h>
21
22namespace libcamera {
23
24/*
25 * Structs that are defined in core.mojom and have the skipHeader tag must be
26 * #included here.
27 */
28
30{
31public:
32 virtual ~IPAInterface() = default;
33};
34
35} /* namespace libcamera */
36
37extern "C" {
39}
40
41#endif /* __LIBCAMERA_IPA_INTERFACE_H__ */
C++ Interface for IPA implementation.
Definition: ipa_interface.h:30
Framework to manage controls related to an object.
Frame buffer handling.
Data structures related to geometric objects.
libcamera::IPAInterface * ipaCreate()
Entry point to the IPA modules.
Top-level libcamera namespace.
Definition: backtrace.h:17
Signal & slot implementation.