Borrar filtros
Borrar filtros

Please provide me a matlab source code for running number of files in a loop.

2 visualizaciones (últimos 30 días)
I am currently working on an image compression project. I have a a series of images in a folder named newsnap.I want to run a dct algorithm on the series of images and save it in another folder named video.So I need the matlab source code for my project urgently.

Respuesta aceptada

Marta Salas
Marta Salas el 20 de Mzo. de 2014
Editada: Marta Salas el 20 de Mzo. de 2014
video_dir = 'snaps/'
extension = 'jpg'
out_dir = 'video/'
resnames=dir(fullfile(video_dirs,['*.' extension]));
for i=1:length(resnames)
img=imread(fullfile(video_dirs,resnames(i).name));
%
% whatever you want to do with your image
%
imwrite(img, [out_dir resnames(i).name]);
end

Más respuestas (0)

Categorías

Más información sobre Get Started with Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by