Skip to content

Instantly share code, notes, and snippets.

@hackintoshrao
Created March 12, 2017 02:23
Show Gist options
  • Select an option

  • Save hackintoshrao/e749032737a2ad4e049eb03430fc7fc7 to your computer and use it in GitHub Desktop.

Select an option

Save hackintoshrao/e749032737a2ad4e049eb03430fc7fc7 to your computer and use it in GitHub Desktop.
Reduce the intensities of the images before adding them
car = imread(car.png);
beach = imread(beach.png);
merge = car / 2 + beach / 2 ;
imshow(merge);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment