How create function for call image?

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

 Respuesta aceptada

Image Analyst
Image Analyst el 1 de En. de 2019
Try this:
function im = inp()
[baseFileName, folder] = uigetfile('D:project/image/*.bmp');
fullFileName = fullfile(folder, baseFileName);
im = imread(fullFileName);
end

4 comentarios

Oman Wisni
Oman Wisni el 1 de En. de 2019
Thank you. It's work :)
Oman Wisni
Oman Wisni el 1 de En. de 2019
@Image Analyst, I have another questions. I create Gui in matlab, it very easy to use because can read all function I have. So Im not need create many code to declarad what I want. Just enough call function and it works.
I want call all my function using php, is it possible the php can call the GUI include all my function?
thanks
Image Analyst
Image Analyst el 2 de En. de 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 el 2 de En. de 2019
Yes sir, I will trying to ask with new question. thanks for your answer, I already accepted your answer :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Convert Image Type en Centro de ayuda y File Exchange.

Preguntada:

el 1 de En. de 2019

Comentada:

el 2 de En. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by