How to create a function that will call a text value to open a file?

1 回表示 (過去 30 日間)
Thomas-Glyn Cox
Thomas-Glyn Cox 2014 年 6 月 12 日
コメント済み: Thomas-Glyn Cox 2014 年 6 月 13 日
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!

採用された回答

Vishal Rane
Vishal Rane 2014 年 6 月 12 日
Assuming image_filename contains the complete path (if not on matlab path) or name of image to be read, then
G = imread( image_filename);
  1 件のコメント
Thomas-Glyn Cox
Thomas-Glyn Cox 2014 年 6 月 13 日
Just a minor note, when inputting the image_filename variable, one needs to make sure to include the format as 'image_filename.format' syntax or else there will be errors.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import and Export についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by