Is it possible to pass an image as an input to a function in Matlab?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
채택된 답변
Dishant Arora
2013년 7월 13일
An image is nothing but a matrix, so you can pass it like any other variable.
I=imread('YourImage');
yourFunction(I)
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!