How to take Image as Input in a function

Im trying to make a function that takes a image of any type (png,jpeg etc) and then performs some task on them. But i cannot figure how to take the image as input in the function. Please help :)

Respuestas (2)

Cris LaPierre
Cris LaPierre el 31 de Mzo. de 2020

1 voto

You'd have to first load the image into MATLAB and store it in a variable. You can then pass that variable as input to your function.
Here's the link to a doc page on importing images.

5 comentarios

Talal Waseem
Talal Waseem el 1 de Abr. de 2020
figured it out thanks to you! Cheers
YOGITAA YOGITAA
YOGITAA YOGITAA el 5 de Oct. de 2022
how did you solve it? I have the same question.
Ella
Ella el 5 de Jun. de 2023
I'm struggling with the same thing. I know my code works, because when I remove the function header and the code with a specific image inserted in the imread funciton the code works. It only stops working when I try to run it as a function. This is my function header.
function Organize(fn)
%code
end
How would I call the function with the image being the fn input?
Ella
Ella el 5 de Jun. de 2023
I also made sure that the image is downloaded into the proper file
Cris LaPierre
Cris LaPierre el 5 de Jun. de 2023
Editada: Cris LaPierre el 5 de Jun. de 2023
Share the code you have written (including loading your image) that calls/uses your function.

Iniciar sesión para comentar.

For example
grayImage = imread('moon.tif');
meanGL = mean2(grayImage)
meanGL = 52.9154
grayImage2 = DarkenImage(grayImage); % Call function
meanGL2 = mean2(grayImage2)
meanGL2 = 26.7118
%======================================================
% Define function that divides the image values by 2
function output = DarkenImage(inputImageArray)
output = inputImageArray / 2;
end

1 comentario

Ella
Ella el 6 de Jun. de 2023
I managed to figure it out! Thank you for your help

Iniciar sesión para comentar.

Categorías

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

Productos

Versión

R2018a

Preguntada:

el 31 de Mzo. de 2020

Comentada:

el 6 de Jun. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by