How do you display a dynamically changing colormap in the app designer?
Show older comments
Hello, I'm making an app where one window shows a dynamically changing colormap. Specifically, I have a 3D array frame_recording with dimensions 5x10x5000, and I'm running a while loop so that in the n-th iteration, the matrix frame_recording(:,:,n) is displayed in the window in the form of a colormap. I'm using imagesc for this, so something like this:
while(app.numFrame <= app.recording_duration)
imagesc(app.UIAxes, app.frame_recording(:,:,app.numFrame));
colormap(app.UIAxes,'jet');
app.numFrame = app.numFrame + 1;
end
The problem is that there is a large delay when displaying the image, I expect the colormap to change every few milliseconds but instead it takes around 0.3-0.4 seconds. I saw an app made in GUIDE that uses the command set(app.UIAxes, 'CData', app.frame_recording(:,:,app.numFrame) to display it and it works much better, but I get an error that 'CData' is not a valid property name for the set function (I'm using the newer app developer so maybe that's the issue). Is there any other way to make sure the colormap is properly displayed for each iteration in the loop?
Accepted Answer
More Answers (0)
Categories
Find more on Blue in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!