Is it possible to pass an image as an input to a function in Matlab?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Febin Benjamin
il 13 Lug 2013
Modificato: Stephen23
il 5 Mar 2015
Actually m writing a module which will accept the image and the filter matrix as an input and show the filtered image as output. So is it possible to write a code based on this logic or should I change my logical perception?
0 Commenti
Risposta accettata
Dishant Arora
il 13 Lug 2013
An image is nothing but a matrix, so you can pass it like any other variable.
I=imread('YourImage');
yourFunction(I)
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!