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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
| /*
| * Copyright (c) 2021-2022 Rockchip Eletronics Co., Ltd.
| *
| * Licensed under the Apache License, Version 2.0 (the "License");
| * you may not use this file except in compliance with the License.
| * You may obtain a copy of the License at
| *
| * http://www.apache.org/licenses/LICENSE-2.0
| *
| * Unless required by applicable law or agreed to in writing, software
| * distributed under the License is distributed on an "AS IS" BASIS,
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
| * See the License for the specific language governing permissions and
| * limitations under the License.
| */
| #ifndef _SAMPLE_COMM_H_
| #define _SAMPLE_COMM_H_
|
| #include <stdio.h>
| #include "rkisp_demo.h"
| #include "rk_aiq_comm.h"
|
| #define CLEAR() printf("\x1b[2J\x1b[H");
| #define RESET_CURSOR() printf("\033[H");
|
| #define RKAIQ_SAMPLE_CHECK_RET(ret, format, ...) \
| if (ret) { \
| printf(format, ##__VA_ARGS__); \
| return ret; \
| }
|
| enum RK_ISP_HW_MODULE_e {
| RK_ISP_AE,
| RK_ISP_AWB,
| RK_ISP_AF,
| RK_ISP_ACCM,
| RK_ISP_A3DLUT,
| RK_ISP_ADRC,
| RK_ISP_AMERGE,
| RK_ISP_AGAMMA,
| RK_ISP_ADEHAZE,
| RK_ISP_AYNR,
| RK_ISP_ACNR,
| RK_ISP_ASHARP,
| RK_ISP_ABAYER2DNR,
| RK_ISP_ABAYERTNR,
| RK_ISP_CSM,
| RK_ISP_ABLC,
| RK_ISP_AGIC,
| RK_ISP_ALDCH,
| RK_ISP_ADEBAYER,
| RK_ISP_ACP,
| RK_ISP_AIE,
| RK_ISP_AGAIN,
| RK_ISP_MAX,
| };
|
| typedef int (*uapi_case_func)(const void*);
|
| typedef struct __uapi_case {
| // description of this uapi
| const char* desc;
| // uapi function
| uapi_case_func func;
| } uapi_case_t;
|
| int uapi_usage_show(uapi_case_t* uapi_list);
|
| int uapi_list_count(uapi_case_t* uapi_list);
|
| int uapi_process_loop(const rk_aiq_sys_ctx_t* ctx, uapi_case_t* uapi_list);
|
| #endif
|
|