How to labeling image?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Annas Anwar
am 24 Feb. 2017
Beantwortet: Image Analyst
am 24 Feb. 2017
Hello All
I'm new in Matlab. I have many images and I want to give one label for each image. How assign one label for one image?
Thank you Anwar
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 24 Feb. 2017
What does that mean? Each image already has a filename, if you read it in from disk. If you created the image in the program, then each image has a variable name. If you want to give the figure window a name (the window where you display the image), you can do this:
% Get rid of tool bar and pulldown menus that are along top of figure.
set(gcf, 'Toolbar', 'none', 'Menu', 'none');
% Give a name to the title bar.
set(gcf, 'Name', 'Demo Image, by ImageAnalyst', 'NumberTitle', 'Off')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Computer Vision with Simulink finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!