Looking for a Videosequence
Show older comments
Hello,
I was wondering whether there is a videosequence in Matlab I could use. I can see lots of images to work with and explore Matlab, but I haven´t found a Videosequence (yet). Does anyone know this?
Answers (1)
Available video sequences include at least the following (possibly more, depending on platform)
MLR = matlabroot();
cmd = sprintf('find %s -mount \\( -name \\*.avi -o -name \\*.mp4 -o -name \\*.mpg -o -name \\*.mj2 \\) -print', MLR);
system(cmd);
SPR = matlabshared.supportpkg.getSupportPackageRoot;
cmd = sprintf('find %s -mount \\( -name \\*.avi -o -name \\*.mp4 -o -name \\*.mpg -o -name \\*.mj2 \\) -print', SPR);
system(cmd);
Categories
Find more on Convert Image Type 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!