Advertisement
Guest User

Untitled

a guest
May 26th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.17 KB | None | 0 0
  1. clear all
  2.  
  3. % Read a picture
  4. I2 = imread('img2.jpg');
  5.  
  6. % Making grayscale picture function
  7. Iba = im_grayscale(I2);
  8.  
  9. B = im_filter(Iba);
  10. B = uint8(B);
  11. figure, imshow(B);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement