snapshot problem in video processing
Show older comments
i have a problem with snapshot in my codes.i can;t take a frame for remove noise.the program have error
Undefined function 'snapshot' for input arguments of type 'matlab.graphics.primitive.Image'.
Error in Untitled4 (line 10)
img= snapshot(c);
clear
clc
vid= VideoReader('viptraffic.avi'); %reading video file by VideoReader function
for i=1:vid.NumberofFrames %its a loop for noise removing and showing video online
img=read(vid,i); %reading video frame
c=imshow(img)
img= snapshot(c);
end
5 Comments
Turlough Hughes
on 1 Jul 2020
Inputs for snapshot are can be either (i) a cameraboard object, or (ii) a webcam object, wherehas you are inputting an Image object. See this part of the documentation. Aside from that your frame, for a given iteration of the loop, will be stored in img.
Turlough Hughes
on 1 Jul 2020
Why are you using the snapshot function in the first place, are you trying to read data from a camera connected to your computer, or is the goal here to simply modify footage from viptraffic.avi?
mehrdad jafari
on 1 Jul 2020
Walter Roberson
on 1 Jul 2020
What is it you want to take an image of? A camera connected to the computer? Or a frame from the video that is playing?
mehrdad jafari
on 1 Jul 2020
Answers (1)
Turlough Hughes
on 1 Jul 2020
snapshot() is intended for use with a cameraboard object or webcam object and you are attempting you input an image object.
You want to take a image,when video is playing and then work on noise and show it again
To modify the frames and then view the results/create a new video of the modified frames you can do so as follows:
clear
clc
vid= VideoReader('viptraffic.avi'); %reading video file by VideoReader function
player = vision.VideoPlayer; % launch videoplayer
v = VideoWriter('newfile.avi'); % make object for saving modified video
open(v)
for i=1:vid.NumFrames
frame=read(vid,i); % get video frame
modifiedframe = frame; % make a copy
% Perform steps to modify each frame here:
modifiedframe(:,:,[2 3]) = 0; % for example show red stream only
% show results in video player
step(player,[frame modifiedframe]) % alternatively: step(player,modifiedframe)
writeVideo(v,modifiedframe); % write modified frame to your new video file.
pause(0.05)
end
close(v)
I opted to show before and after side by side in the videoplayer.
As for noise removal, there a numerous ways to do so.
some considerations:
3 Comments
mehrdad jafari
on 1 Jul 2020
mehrdad jafari
on 1 Jul 2020
Edited: mehrdad jafari
on 1 Jul 2020
Walter Roberson
on 1 Jul 2020
I recommend starting with the File Exchange contribution videofig https://www.mathworks.com/matlabcentral/fileexchange/29544-figure-to-play-and-analyze-videos-with-custom-plots-on-top which already has callbacks programmed in to it, making it easier to adapt for your purposes.
Categories
Find more on Video Formats and Interfaces in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!