GergelySzabolcs
Very nice! It works now.
One more question: in order to correspond to the image left/right pixel position of resolution 1280x800, (image_left/right.shape => (800,1280) row index first format), what reshape order should I use (800,1280,96)? or (1280,800,96)?
That is which is correct?
framedata = image.getData().reshape((800,1280,96))
or
framedata = image.getData().reshape((1280,800,96))
please confirm. Thanks a lot!