I have to increase the exposure of photo 2 so that it looks like it "whited out". How would I do this? The code I have below is on converting an image to grayscale.
The photos are also included in the zip file.
img1 = imread('photo1.jpg');
img1Double = im2double(img1);
img1Gray = rgb2gray(img1);
figure
imshowpair(img1, img1Gray, 'montage')
img2 = imread('photo2.jpg');
img2Double = im2double(img2);
img2Gray = rgb2gray(img2);
figure
imshowpair(img2, img2Gray, 'montage')
0 Comments
Sign in to comment.