Build 3D Plot from video
    2 次查看(过去 30 天)
  
       显示 更早的评论
    
I have a video where some centered pattern is rotating. So I need to illustrate this video on one plot, frame rate as an one direction in plot. As a beginner any bit of information for me is appreciable. Thanks
0 个评论
回答(1 个)
  Azzi Abdelmalek
      
      
 2013-6-4
        
      编辑:Azzi Abdelmalek
      
      
 2013-6-4
  
      To read your video
video= VideoReader('yourfilename.mpg')
vidFrames = read(video);
frame1=vidFrames(:,:,:,1)
Can you explain what do you want to plot? I'am not sur, maybe
f=double(frame1);
mesh(f(:,:,1),f(:,:,2),f(:,:,3))
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Audio and Video Data 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!