8 bit of size 256*256 grey image for testing
Mostrar comentarios más antiguos
hi every one please I want copy of 8 bit of size 256*256 grey image for such as lena, Baboon, Peppers
1 comentario
punam panda
el 19 de Nov. de 2017
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 24 de Nov. de 2015
Lena is available here: http://www.cs.cmu.edu/~chuck/lennapg/ or here: http://www.lenna.org/full/len_full.html. Note: the second link is the full image which contains nudity. Playboy has given permission to use the cropped version in research.
Peppers is a standard demo image that ships with the Image Processing Toolbox. You can get a gray scale version like this
rgbImage = imread('peppers.png');
grayImage = rgb2gray(rgbImage);
imwrite(grayImage, 'grayPeppers.png');
To get the mandrill baboon demo image in gray scale, do this:
storedStructure = load('mandrill.mat')
rgbImage = ind2rgb(storedStructure.X, storedStructure.map);
grayImage = rgb2gray(rgbImage);
imshow(grayImage);
imwrite(grayImage, 'grayMandrill.png');
1 comentario
Majid Al-Sirafi
el 24 de Nov. de 2015
Categorías
Más información sobre Image Filtering and Enhancement en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!