How to make a video in which every alternate frame is gray?
16 次查看(过去 30 天)
显示 更早的评论
I have extracted frames from a video(e.g. Rhino.avi). Now I have to convert the alternate images among the extracted frames to grayscale and then write the frames back into a video file. So when the new video is played its every alternate frame would be in grayscale.
1 个评论
Doug Hull
2013-9-6
What part are you having trouble with?
I think you need to be able to read a given frame, convert a frame to gray, then store it back in the file. What format do you want out, RGB where the RGB just happens to look gray? You need to give details of the specific problem that you are having so we can help you more effectively.
采纳的回答
Image Analyst
2013-9-6
See the FAQ: http://matlab.wikia.com/wiki/FAQ#How_do_I_extract_frames_from_a_video_file.3F Then, at the appropriate place, convert the image to 3D grayscale before saving.
grayImage = rgb2gray(colorFrame);
grayFrame = cat(3, grayImage, grayImage, grayImage);
% Then write out grayFrame.
0 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!