Finding example images in the distribution

조회 수: 28 (최근 30일)
David Young
David Young 2011년 2월 15일
답변: Image Analyst 2015년 1월 19일
Is there an easy way to find all the example images (such as pout.tif, greens.jpg) that come with MATLAB and any installed toolboxes? This would be useful for setting up one's own demonstrations and giving code examples to other users.
I can find many by a recursive search on the MATLAB directory tree, looking for likely filename extensions, but I wondered if someone had provided a simpler way (e.g. just a list in the documentation) that I've missed.
  댓글 수: 1
Andreas Goser
Andreas Goser 2011년 2월 15일
I think this is a very good question. I also struggle with that when discussion image processing examples.

댓글을 달려면 로그인하십시오.

답변 (3개)

Image Analyst
Image Analyst 2015년 1월 19일
They actually changed where they kept their images when they went to R2014b. So this used to work:
folder = fullfile(matlabroot, '\toolbox\images\imdemos');
but not any more. So I've been told from the Mathworks that this is the best way:
% Determine where demo folder is (works with all versions).
folder = fileparts(which('cameraman.tif'));

Sean de Wolski
Sean de Wolski 2011년 2월 15일
doc
-> Image Processing Toolbox -> Getting Started -> Image Credits
  댓글 수: 1
David Young
David Young 2011년 2월 15일
Thanks - this helps, but there are images not listed (e.g. spine.tif, tire.tif), some entries don't give file names (e.g. "LAN files") and the filename extensions aren't given.

댓글을 달려면 로그인하십시오.


Florin Neacsu
Florin Neacsu 2011년 9월 9일
Hi,
This might be late. For me it's C:\Program Files\MATLAB\R2007b\toolbox\images\imdemos.
I got there by pure accident. I remember modifying cameraman and when I tried something like
imageTest=imread('cameraman.tif')
I got this error
??? Error using ==> rtifc
C:\Program
Files\MATLAB\R2007b\toolbox\images\imdemos\cameraman.tif:
No space to read TIFF directory.
Anyway,HTH.
Regards, Florin

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by