Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. image = imread("papug.jpg");
  2. image_gray = rgb2gray(image);
  3. rev_gray = 255-image_gray;
  4. imshow(rev_gray)
  5. pause(10)
  6. imhist(rev_gray)
  7. subplot(1,2,1), subimage(rev_gray);
  8. subplot(1,2,2), imhist(rev_gray);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement