Open wingillis opened 2 years ago
read_frames_raw sets movie_dtype='<i2', which converts data read in from depth.dat files as int16, when in reality they should be uint16 values. movie_dtype should actually be set to <u2.
read_frames_raw
movie_dtype='<i2'
depth.dat
int16
uint16
movie_dtype
<u2
read_frames_raw
setsmovie_dtype='<i2'
, which converts data read in fromdepth.dat
files asint16
, when in reality they should beuint16
values.movie_dtype
should actually be set to<u2
.