Ryba3310

helpers.h

Apr 16th, 2022 (edited)
784
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1. #include "bmp.h"
  2.  
  3. // Convert image to grayscale
  4. void grayscale(int height, int width, RGBTRIPLE image[height][width]);
  5.  
  6. // Convert image to sepia
  7. void sepia(int height, int width, RGBTRIPLE image[height][width]);
  8.  
  9. // Reflect image horizontally
  10. void reflect(int height, int width, RGBTRIPLE image[height][width]);
  11.  
  12. // Blur image
  13. void blur(int height, int width, RGBTRIPLE image[height][width]);
Advertisement
Add Comment
Please, Sign In to add comment