I'm not sure if you still have this problem, but if you know ROS, you can stream the cameras on your computer by configuring the drone to have the ROS master on your computer. First follow the steps at this link to setup ROS on RB5. https://docs.modalai.com/setup-ros-on-voxl-2/
Then you can set the ROS master to be on your computer by opening ~/.bashrc on the RB5 drone, and entering these lines in the file:
export ROS_MASTER_URI=http://{PC_IP_ADDRESS}:11311/ export ROS_HOSTNAME={RB5_DRONE_IP}PC_IP_ADDRESS can be obtained from ipconfig on your computer. RB5_DRONE_IP is the one you use to ssh into it.
Then on the drone:
On your computer execute:
roscore RvizOn the drone execute:
roslaunch voxl_mpa_to_ros voxl_mpa_to_ros.launchYou will then be able to view the camera display topics from voxl_mpa_to_ros on your computer. You can stream them on Rviz, and you can create ROS nodes to subscribe to these topics for whatever computer vision application you develop. Hope this helps.