How to create a function that will call a text value to open a file?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Thomas-Glyn Cox
am 12 Jun. 2014
Kommentiert: Thomas-Glyn Cox
am 13 Jun. 2014
I am creating a function that needs to have a couple of values associated with a file that it loads and does some processing to. The function looks like this (obviously names changed.)
function [outx,outy] = imstupid(image_filename,var1,var2,var3)
G = imread('filename','bmp');
.Functions
.That
.Already
.Work
end
Sorry if this isn't clear, but basically I need to have image_filename be called as text value that is used in the imread function. Thanks!
0 Kommentare
Akzeptierte Antwort
Vishal Rane
am 12 Jun. 2014
Assuming image_filename contains the complete path (if not on matlab path) or name of image to be read, then
G = imread( image_filename);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Convert Image Type finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!