This statement is not inside any function. (It follows the END that terminates the definition of the function "extract_tiff".)

2 visualizzazioni (ultimi 30 giorni)
Could you please help with explanation. Thank you in advance.
I am trying to pass a file, but I keep getting this ERROR!
This statement is not inside any function.
(It follows the END that terminates the definition of the function "extract_tiff".)
function [] = extract_tiff()
[filename,pathname]=uigetfile({'*.avi';'*.mov'},'File Selector');
outPath = [pathname,'frame\'];
if ~exist(outPath,'dir')
mkdir(outPath)
end
mov = VideoReader([pathname,filename]);
k = 1;
images = readFrame(mov);
images=im2uint8(images);
outName=sprintf('cam_0_%06d.tif',k);
imwrite(images,[outPath,outName],'tiff');
% outName = sprintf('cam_0_%06d.tif',k);
% imwrite = images,[outPath,outName],'tiff');
k=k+1;
end
end

Risposte (1)

per isakson
per isakson il 31 Mag 2020
There are two end at the end of the function.
k=k+1;
end
end
Remove one of them

Categorie

Scopri di più su Image Processing and Computer Vision in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by