dither_image.h 207 B

1234567891011
  1. #ifndef DITHER_IMAGE_H
  2. #define DITHER_IMAGE_H
  3. #include <esp_camera.h>
  4. #include "camera_model.h"
  5. /** Dither the image using the selected algorithm. */
  6. void dither_image(camera_fb_t* frame_buffer);
  7. #endif