How to use imshow in a panel?
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I'm using App Designar, I have this interface with a Panel

When you push in the bottom, starts a function that show an image and then update the image painting things, then another image, then update it...
This is the code:
     frameRGB = read(vidReader,i);
      frameGray = rgb2gray(frameRGB);
      flow = estimateFlow(opticFlow,frameGray);
      figure(1);imshow(frameRGB);impixelinfo
      hold on
I need to show this image and their subsequent updates in the panel and not in the figure. The panel is app.myPanel
Risposta accettata
Più risposte (1)
  Subhadeep Koley
    
 il 10 Feb 2020
        You can create a child uiaxis for the uipanel parent and specify the uiaxis handle as parent while using imshow.
frameRGB = read(vidReader, i);
frameGray = rgb2gray(frameRGB);
flow = estimateFlow(opticFlow, frameGray);
ax1 = uiaxes(app.myPanel);
imshow(frameRGB, 'Parent', ax1);
hold on
0 Commenti
Vedere anche
Categorie
				Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
			
	Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


