How do I display images in App designer ?
    20 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
image_train is a 3 dimentional matri. I want to display images in App-Designer.
% image_train is a 3 dimentional matrix. I want to display images in App designer
% imshow is not helping. 
methods (Access = private)
        % Value changed function: ImageSpinner
        function ImageSpinnerValueChanged(app, event)
            value = app.ImageSpinner.Value;
            image_now = app.image_train(:,:,value); 
            %image_now = rand(50,50)
            %imshow(app.UIAxes,image_now);
            imshow(app.Image,image_now);
        end
    end
0 Kommentare
Antworten (1)
  Jemima Pulipati
    
 am 20 Feb. 2021
        
      Bearbeitet: Jemima Pulipati
    
 am 20 Feb. 2021
  
      Hello,
From my understanding, you want to display images in app designer. 
You may consider using the 'Parent' option for the imshow() function.
The following answers from the community might be of relevance to you.
0 Kommentare
Siehe auch
Kategorien
				Mehr zu Develop Apps Using App Designer 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!

