I have a function to create images. In a script, how do i call an image using that function without displaying it?
3 ビュー (過去 30 日間)
古いコメントを表示
I have a function to create images. In a script, how do i call an image using that function without displaying it?
0 件のコメント
回答 (2 件)
Explorer
2016 年 3 月 9 日
You just need to insert percentage symbol in order to comment the function that displays image.
Forexample:
% imshow(img)
Image Analyst
2016 年 3 月 9 日
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().
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!