Advertisement
Guest User

tapi

a guest
Feb 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. img1 = imread('original.jpg');
  2. img2 = imread('noise1.jpg');
  3. img3 = imread('noise2.jpg');
  4. img4 = imread('noise3.jpg');
  5.  
  6.  
  7. figure;
  8. subplot(4,4,1);
  9. imshow(img1);
  10.  
  11. subplot(4,4,5);
  12. imshow(img2);
  13.  
  14. subplot(4,4,9);
  15. imshow(img3);
  16.  
  17. subplot(4,4,13);
  18. imshow(img4);
  19.  
  20.  
  21. subplot(4,4,2);
  22. imhist(img1);
  23.  
  24. subplot(4,4,6);
  25. imhist(img2);
  26.  
  27. subplot(4,4,10);
  28. imhist(img3);
  29.  
  30. subplot(4,4,14);
  31. imhist(img4);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement