Can I run NVIDIA DeepStream SDK in Windows Server 2019?

瘦欲@ 提交于 2020-07-31 04:21:00

问题


System: I've a Windows Server 2019 OS installed with a NVIDIA Tesla T4 Tensor Core GPU.

Goal: Planning to read real time streaming videos from an IP camera and to further process frame by frame. Goal is to leverage NVIDIA DeepStream SDK, but issue is, it isn't available for Windows OS. So, I'm thinking on the docker lines, but since am very new to docker containers, would like to know if I can install a docker on Windows and can run this deepstream docker image on that.

If not, is there any way I can run this Linux based DeepStream docker image on Windows? Any help shall be greatly acknowledged.


回答1:


I have never worked with the windows server before it should be the same as a docker in Linux VM.

First, you need to pull docker images for deepstream

docker pull nvcr.io/nvidia/deepstream:5.0-dp-20.04-triton

and then try to run sample apps provided in the docker image.

Refer this for the procedure.

if you are interested in python apps you can check sample apps here.

Note:- make sure you are able to access display from inside the container cause deepstream use eglsink in their samples app which will try to open a display window on your screen or you can change the sink type to filesink if you want to save it is a file.

Refer this for available plugins and their attributes.



来源:https://stackoverflow.com/questions/63031851/can-i-run-nvidia-deepstream-sdk-in-windows-server-2019

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!