camera client node for voxl-dfs-server or voxl-qvio-server
-
Hi dev team,
I'm investigating source code for qvio, dfs-server.
As you can see the main code, it broadcast their image processing result using modal pipe server.
But, in the client code, it only get data result using modal pipe client, even it generates image stream.
- How can I get streaming result for point cloud or qvio from server?
My meaning is not steal image, image stream like rtsp client.
- If there are a few types of camera server such as camera node from voxl-camera-server result, point-cloud result from voxl-dfs-server or qvio result from voxl-qvio-server, how can client recognize which camera server matched with?
Thanks,
-
Hi Shlee,
Much like camera server, these two services output data to /run/mpa . If you're running our latest voxl suite release (0.4.6), you can run
voxl-streamer -c qvio-overlay
if you want an rtsp stream of the HUD coming out of qvio server or
voxl-streamer -c dfs-disparity
If you want the disparity image from DFS server.
If you're not on our latest release (though we strongly encourage that you do install the platform 033-046 here) then you can manually add voxl-streamer configurations to the config file as seen here
If you want raw qvio data or the DFS pointcloud then you'll need to do that through voxl-mpa-to-ros which will publish the two aforementioned images, as well as a DFS pointcloud and raw qvio data.
-
Great,
Thank you for your reply.