process_image.h 256 B

123456789101112
  1. #ifndef PROCESS_IMAGE_H
  2. #define PROCESS_IMAGE_H
  3. #include <esp_camera.h>
  4. #include <FS.h>
  5. #include "dithering.h"
  6. /** Process and send grayscale images back to the Flipper Zero. */
  7. void process_image(camera_fb_t *frame_buffer, CameraModel *model);
  8. #endif