process_image.h 262 B

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