diff options
Diffstat (limited to 'src/image.h')
| -rw-r--r-- | src/image.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/image.h b/src/image.h index 2fff020..1ec1b93 100644 --- a/src/image.h +++ b/src/image.h @@ -9,10 +9,10 @@ struct Image { int width{0}; int height{0}; - uint16_t data[img_height][img_width] = {{0}}; - uint16_t rotated_cw[img_width][img_height] = {{0}}; - size_t dataSize{0}; - unsigned int stride{0}; + uint8_t data[img_height][img_width] = {{0}}; + uint8_t rotated_cw[img_width][img_height] = {{0}}; + // size_t dataSize{0}; + // unsigned int stride{0}; libcamera::PixelFormat pixelFormat{0}; Counters counters{}; |
