Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.56 KB | None | 0 0
  1. void main( . Y . ){
  2.     //get shit from headers
  3.  
  4.     unsigned char image1[img1Size];
  5.     unsigned char image2[img2Size]; //img1 / img2 size = 499446
  6.  
  7.     //final image size is after comparing both images it picks the bigger one
  8.     checkerBoardPattern(image1, image2, finalImageSize, finalImageWidth);
  9.     blendImages(image1, image2, finalImageSize);
  10. }
  11. void checkerBoardPattern(unsigned char *firstImage, unsigned char *secondImage, int imgSize, int imgWidth){
  12.     //make shit
  13. }
  14. void blendImages(unsigned char *firstImage, unsigned char *secondImage, int imgSize){
  15.     //make shit
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement