|
| 1 | +/* |
| 2 | + * Copyright (c) 2025 tinyVision.ai Inc. |
| 3 | + * |
| 4 | + * SPDX-License-Identifier: Apache-2.0 |
| 5 | + */ |
| 6 | + |
| 7 | +#include <stdint.h> |
| 8 | + |
| 9 | +#include <zephyr/sys/util.h> |
| 10 | +#include <zephyr/pixel/stats.h> |
| 11 | +#include <zephyr/pixel/print.h> |
| 12 | +#include <zephyr/logging/log.h> |
| 13 | + |
| 14 | +LOG_MODULE_REGISTER(app, LOG_LEVEL_INF); |
| 15 | + |
| 16 | +#define NVAL 100 |
| 17 | + |
| 18 | +static const uint8_t image_rgb24[20 * 4 * 3] = { |
| 19 | + 0x47, 0x84, 0xee, 0x46, 0x84, 0xee, 0x47, 0x84, 0xee, 0x46, 0x83, 0xee, 0x47, 0x84, 0xee, |
| 20 | + 0x78, 0xaa, 0xec, 0x74, 0xb2, 0xe0, 0x67, 0xaa, 0xdd, 0x78, 0xb2, 0xef, 0x39, 0x8c, 0xf1, |
| 21 | + 0x3a, 0x8c, 0xf2, 0x39, 0x8b, 0xf1, 0x3a, 0x8b, 0xf1, 0x3a, 0x8b, 0xf1, 0x3a, 0x8b, 0xf1, |
| 22 | + 0x3a, 0x8b, 0xf1, 0x3b, 0x8b, 0xf1, 0x3b, 0x8b, 0xf1, 0x3b, 0x8b, 0xf1, 0x3b, 0x8a, 0xf1, |
| 23 | + 0x47, 0x82, 0xed, 0x47, 0x82, 0xed, 0x47, 0x82, 0xee, 0x47, 0x82, 0xed, 0x47, 0x82, 0xed, |
| 24 | + 0x47, 0x82, 0xed, 0x5d, 0x93, 0xed, 0x5f, 0x9d, 0xeb, 0x3a, 0x8a, 0xf1, 0x3a, 0x8a, 0xf0, |
| 25 | + 0x3a, 0x8a, 0xf1, 0x3a, 0x8a, 0xf0, 0x3b, 0x8a, 0xf0, 0x3b, 0x8a, 0xf0, 0x3b, 0x8a, 0xf0, |
| 26 | + 0x3b, 0x89, 0xf0, 0x3b, 0x8a, 0xf0, 0x3b, 0x89, 0xf0, 0x3c, 0x89, 0xf0, 0x3c, 0x89, 0xf0, |
| 27 | + 0x49, 0x82, 0xee, 0x49, 0x82, 0xed, 0x49, 0x82, 0xee, 0x48, 0x82, 0xed, 0x49, 0x82, 0xee, |
| 28 | + 0x49, 0x82, 0xed, 0x73, 0x92, 0xe9, 0x50, 0x65, 0xd4, 0x4c, 0x93, 0xf2, 0x3c, 0x8a, 0xf1, |
| 29 | + 0x3c, 0x8a, 0xf1, 0x3c, 0x8a, 0xf0, 0x3c, 0x8a, 0xf1, 0x3c, 0x89, 0xf0, 0x3d, 0x8a, 0xf1, |
| 30 | + 0x3d, 0x89, 0xf0, 0x3d, 0x89, 0xf0, 0x3d, 0x89, 0xf0, 0x3e, 0x89, 0xf0, 0x3d, 0x89, 0xf0, |
| 31 | + 0x4a, 0x81, 0xed, 0x49, 0x81, 0xed, 0x4a, 0x81, 0xed, 0x49, 0x81, 0xed, 0x49, 0x81, 0xed, |
| 32 | + 0x71, 0x8c, 0xe5, 0x3e, 0x4c, 0xcc, 0x3d, 0x4c, 0xcb, 0x65, 0x85, 0xe1, 0x3d, 0x89, 0xf0, |
| 33 | + 0x3d, 0x89, 0xf0, 0x3d, 0x88, 0xf0, 0x3d, 0x89, 0xf0, 0x3d, 0x88, 0xf0, 0x3e, 0x88, 0xf0, |
| 34 | + 0x3e, 0x88, 0xf0, 0x3e, 0x88, 0xf0, 0x3e, 0x88, 0xf0, 0x3f, 0x88, 0xf0, 0x3e, 0x88, 0xef, |
| 35 | +}; |
| 36 | + |
| 37 | +static uint16_t rgb24hist[3 * 64]; |
| 38 | +static uint8_t rgb24avg[3]; |
| 39 | + |
| 40 | +int main(void) |
| 41 | +{ |
| 42 | + LOG_INF("Input image preview:"); |
| 43 | + pixel_print_rgb24frame_truecolor(image_rgb24, sizeof(image_rgb24), 20, 4); |
| 44 | + |
| 45 | + LOG_INF("RGB histogram of the image"); |
| 46 | + pixel_rgb24frame_to_rgb24hist(image_rgb24, sizeof(image_rgb24), |
| 47 | + rgb24hist, ARRAY_SIZE(rgb24hist), NVAL); |
| 48 | + pixel_print_rgb24hist(rgb24hist, ARRAY_SIZE(rgb24hist), 16); |
| 49 | + |
| 50 | + LOG_INF("RGB channel averages of the image"); |
| 51 | + pixel_rgb24frame_to_rgb24avg(image_rgb24, sizeof(image_rgb24), rgb24avg, NVAL); |
| 52 | + LOG_INF("- R: 0x%02x/0xff", rgb24avg[0]); |
| 53 | + LOG_INF("- G: 0x%02x/0xff", rgb24avg[1]); |
| 54 | + LOG_INF("- B: 0x%02x/0xff", rgb24avg[2]); |
| 55 | + |
| 56 | + return 0; |
| 57 | +} |
0 commit comments