Save Movie Video to Computer

31 views (last 30 days)
ssmith
ssmith on 31 Oct 2021
Commented: Image Analyst on 10 Nov 2021
I have almost 600 dcm files saved into one large folder that I want to load into my MATLAB code to read the data files and print out a grayscale image. I am not sure how to call the 600 dcm files. I tried dicomread but it is not reading. Any help would be appreciated.
  47 Comments
ssmith
ssmith on 10 Nov 2021
@Walter Roberson Do you know how to use VideoWriter and writeVideo to save my movie player video to my computer folder?
Walter Roberson
Walter Roberson on 10 Nov 2021
Yes, just like the VideoWriter documentation shows for those functions. Just make sure that when you pass the file name to VideoWriter() that you pass the complete path, such as
filename = fullfile(output_directory, 'XY_view.avi');
obj = VideoWriter(filename);

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 9 Nov 2021
@ssmith, please see a variety of demos attached where I deal with videos.
You should be able to adapt one of them to make your video. For example to create a zoomed video, extract the portion of the image you want to zoom into, then resize it, then write it to the output video.
  6 Comments
ssmith
ssmith on 9 Nov 2021
Edited: ssmith on 9 Nov 2021
data = folder('scans');
scans = data;
implay(scans);
I think I need to use VideoWriter but I am not sure how to do that
Image Analyst
Image Analyst on 10 Nov 2021
"folder()" is not a function. In my ExtractMovieFrames.m file, I show you how to create a movie from a bunch of individual still images. Use that.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!