How to load standard image Lena?

310 views (last 30 days)
SL
SL on 16 Oct 2016
Commented: DGM on 23 Mar 2024 at 7:52
I tried the following unsuccessfully but also the names `lenna512.bmp`, `lena512.png`, `lenna512.png`, `lena.png`, `lenna.png`, `lenna.bmp`
I=imread('lena512.bmp');
I know there are third-party images for the source but I would like to use the standard Matlab Lena.
Matalb: 2016b OS: Debian 8.5 64 bit Linux kernel: 4.6 backports Hardware: Asus Zenbook UX303UA

Answers (2)

Image Analyst
Image Analyst on 16 Oct 2016
Edited: Image Analyst on 16 Oct 2016
The image was originally scanned by Alexander Sawchuk at the University of Southern California. I had the pleasure of meeting him at USC once! You can find the "original" on his web page by drilling down into links on this page: http://www.cs.cmu.edu/~chuck/lennapg/
  2 Comments
SL
SL on 16 Oct 2016
Edited: SL on 16 Oct 2016
Do you propose that Matlab has no rights to include the image directly in their software? It would be so great that the standard image was built in to avoid any wrong versions of the image. - - Can you propose any standard method about how to put the image to your matlab path? Etc to access by lena.png.
Image Analyst
Image Analyst on 16 Oct 2016
Who knows what the standard image is. It's been floating around for 40+ years and people might have changed it. I think the original one I gave you the link for is the best. Anyone using something different from that one would have to defend why they're using a modified image rather than the original. You're safest using the original.
Playboy still asserts ownership of the image as far as I know. However, use of the image is reportedly "overlooked" and by implication permitted by Playboy in scientific and education contexts, as web searches will reveal.

Sign in to comment.


Harikrishnan
Harikrishnan on 31 Jan 2023
I=imread('lena512.bmp');
Error using imread>get_full_filename
File "lena512.bmp" does not exist.

Error in imread (line 372)
fullname = get_full_filename(filename);
figure,
imshow(I);
  3 Comments
Image Analyst
Image Analyst on 31 Jan 2023
rgbImage = imread('Lena512.bmp');
imshow(rgbImage);
It works, however if you do it from the Answers edit box, the capitalization of the filename must match exactly.
DGM
DGM on 23 Mar 2024 at 7:52
To be clear, it doesn't matter where you do it from, MATLAB does not come with any Lena demo images. You have to go get one somewhere. There are lots of them. Whatever file you provide must be referenced using the correct spelling and capitalization, since filenames are case sensitive.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!