I have a function to create images. In a script, how do i call an image using that function without displaying it?
Ältere Kommentare anzeigen
I have a function to create images. In a script, how do i call an image using that function without displaying it?
Antworten (2)
Explorer
am 9 Mär. 2016
You just need to insert percentage symbol in order to comment the function that displays image.
Forexample:
% imshow(img)
1 Kommentar
Sara Cerqueira
am 9 Mär. 2016
Image Analyst
am 9 Mär. 2016
0 Stimmen
If the function has an argument to turn on or off the display, then pass that in. If the function does not, then you'll have to delete or remove any line that calls imshow(), imagesc(), or image().
1 Kommentar
Sara Cerqueira
am 9 Mär. 2016
Kategorien
Mehr zu Image Arithmetic finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!