Displaying image in Simulink using pixel stream
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to display stream of pixels in Simulink. To start with, I create a 2D array, where the first column contains integers 0 1 2 ... and the other column contains pixel data. I use this approach to mimic the stream of pixels as would be supplied by an image sensor:
data = zeros(576*1024*300,2);
n=1;
for frame = 1:300
for row = 1:576
for col = 1:1024
data(n,2) = GRAY(row,col,frame);
data(n,1) = n-1;
n = n+1;
end
end
end
The buffer collects enough pixel data for a single frame which is then converted back to a 2D matrix and displayed. The simulation refreshes frames very slow - probably every two seconds, i.e. 0.5fps. It seems like the D1 rate is very slow and the pixel data takes a long time to fill the buffer. Thus, currently, to view 300 frames takes about 10 minutes. But the data is ready prior to simulation - why does it take this so long?
I tried to change the 'time' values in the first column to smaller values, but this does not help. There are, probably, some simulation settings that should be adjusted. Any ideas, suggestions? The simulation does not involve any complicated functions, so the refresh rate is definitely not limited by the computer resources.
0 commentaires
Réponse acceptée
Bharath Venkataraman
le 8 Déc 2015
Using the video viewer block instead of the matrix viewer will enable you to display the image. You likely need to set a sample time for the From Workspace block.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Computer Vision with Simulink dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!