Borrar filtros
Borrar filtros

Splitting binary files into different frames to create picture

6 visualizaciones (últimos 30 días)
Mohammad
Mohammad el 11 de Sept. de 2014
Comentada: Walter Roberson el 22 de En. de 2019
Hi everyone;
So I used a program that allows me to record depth data from the Kinect and store it as a .binary file.
So I opened the binary file in MATLAB using the following code: fid = fopen('C:\KinectData\Depth\Depth_Raw_0.binary');
B = fread(fid,'int64');
fclose(fid);
n = 4; % No. of columns of T
BB = reshape(B, n,[]);
T = permute(BB,[2,1]);
imshow(T)
And the result I get is just a line. Its understandable since the variable T is holding all the frames at once.
So I need to find a way on how to split that binary file for let say 30FPS. The properties of each frame is 512X412.
Can anyone help me with that?
Thanks; Ali

Respuestas (1)

Image Analyst
Image Analyst el 11 de Sept. de 2014
  1 comentario
Mohammad
Mohammad el 11 de Sept. de 2014
I do not think its a Kinect related issue since the Kinect I am using is the new one which is not supported by MATLAB. Also, I just need to be able to process a binary file to convert it into an image. Any idea on how this can be done?

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by