I believe what you are trying to do is view the 9th frame of this video. It looks like your frames are RGB images of size h x w x 3. What you are currently plotting is only the value of the red component in the bottom rightmost pixel of your image. Nothing shows up because you plot it as if it were a line, but there is only one point.
In order to do view this frame, you can use the function imshow on the whole RGB matrix.
For example:
imshow(processo(:,:,:,9));
will show the 9th frame.