How to use imagesc and videowriter

3 views (last 30 days)
MSP
MSP on 9 Dec 2017
Commented: MSP on 11 Dec 2017
Consider that we have multiple images to be shown by imagesc in a loop,How to convert this to a mp4 sequence
  2 Comments
Michal Dobai
Michal Dobai on 11 Dec 2017
What did you tried so far? Creating video from set of images shouldn't be a problem. Whole process is well described in MATLAB documentation.
So if I understand correctly, your problem might be about how to get image from your data (with same colors) as it's displayed by imagesc. Is that right? Documentation says:
imagesc (C) displays the data in array C as an image that uses the full range of colors in the colormap. Each element of C specifies the color for 1 pixel of the image.
If you can create indexed image from your data then you can easily add this image as next frame to your video. (see documentation link above). Your image has to use the full range of colors in the colormap to get same results as with imagesc(). This link might help you with that: Save an intensity image created with imagesc with true resolution
With these information you should be able to solve your problem. If you have any questions, something is not clear enough, or you have problems with your code, feel free to ask me, I will try to help you.
MSP
MSP on 11 Dec 2017
Fixed my problem

Sign in to comment.

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!