MATLAB: How to make Operations on video frames

frames as imagesImage Processing Toolboxoperations on videovideo frame

Hi I have a mp4 video , I turned it into Frames … but I want to make operations on EACH frame
Can any one help ???

Best Answer

Loop?
for K = 1 : number_of_frames
this_frame = frames{K}; %or however you stored them
now do something with this_frame
end
Related Question