dlstreamer / pipeline-server

Home of Intel(R) Deep Learning Streamer Pipeline Server (formerly Video Analytics Serving)
BSD 3-Clause "New" or "Revised" License
126 stars 51 forks source link

vaclient cannot display inference results from files on remote server #100

Closed dingyiyi0226 closed 2 years ago

dingyiyi0226 commented 2 years ago

Hi I pull the image from dockerhub and running on a server (192.168.50.70), and I launch the vaclient on local machine (192.168.50.80). I can get the result of avg_fps, but is it possible to sync the /tmp/results.jsonl automatically?

截圖 2022-01-10 22 54 34
whbruce commented 2 years ago

If you're running the service on a remote system, use mqtt to publish results to a broker and then use an mqtt client to display them as per docs/customizing_pipeline_requests.

Note that vaclient can't currently start a pipeline on a remote service, you'll need to use curl to do that as per the above example.

whbruce commented 2 years ago

In v0.7.1 vaclient can connect to remote servers and view results over mqtt by setting appropriate destination values. This is the recommended option for viewing remote metadata. Setting issue to wontfix and will close.

dingyiyi0226 commented 2 years ago

Thanks