I spent a lot of time looking for the right image.
Here it is.
A=imread('Monet11.jpg')
image(A);

size(A)
ans =
349 350 3
I decreased the original image using average over all pixels in the destination point.
B=decrease4(A,20/349,20/350);
image(B)
size(B)
ans =
20 20 3
No comments:
Post a Comment