Filter löschen
Filter löschen

Build 3D Plot from video

1 Ansicht (letzte 30 Tage)
Davit Hakobyan
Davit Hakobyan am 4 Jun. 2013
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

Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 4 Jun. 2013
Bearbeitet: Azzi Abdelmalek am 4 Jun. 2013
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))
  1 Kommentar
Davit Hakobyan
Davit Hakobyan am 4 Jun. 2013
I want to plot the video I have. Sounds strange but it is like so, some pattern is centered in video and it is rotating as a evolution of time i.e. frame rate. Dark elsewhere. So I want to put this info on single 3D plot

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by