I have a function to create images. In a script, how do i call an image using that function without displaying it?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a function to create images. In a script, how do i call an image using that function without displaying it?
0 commentaires
Réponses (2)
Explorer
le 9 Mar 2016
You just need to insert percentage symbol in order to comment the function that displays image.
Forexample:
% imshow(img)
Image Analyst
le 9 Mar 2016
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().
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!