How create function for call image?

3 vues (au cours des 30 derniers jours)
Oman Wisni
Oman Wisni le 1 Jan 2019
Commenté : Oman Wisni le 2 Jan 2019
Hy, I want create function for input the image but, when I run my code cannot read images. Can help me fix my code? here my code..
function im = inp(uigetfile,fullfile)
[fnameN, pathname]=uigetfile('D:project/image/.bmp');
fname=fullfile(pathname, fnameN);
im=imread(fname);
end
thanks, any advanced will be must appreciated

Réponse acceptée

Image Analyst
Image Analyst le 1 Jan 2019
Try this:
function im = inp()
[baseFileName, folder] = uigetfile('D:project/image/*.bmp');
fullFileName = fullfile(folder, baseFileName);
im = imread(fullFileName);
end
  4 commentaires
Image Analyst
Image Analyst le 2 Jan 2019
If the original question is Answered, can you click the "Accept this question" link?
Sorry, I don't use php or know anything about it. You should ask a new question in a new thread and use php in the subject line and tag, and maybe someone else will help you.
Oman Wisni
Oman Wisni le 2 Jan 2019
Yes sir, I will trying to ask with new question. thanks for your answer, I already accepted your answer :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by