Tag: kinect

是否有可能在Docker容器中运行Kinect V2?

我正在探索在Docker for Windows容器中运行C#Kinect Visual Gesture程序(类似于Continuous Gesture Basics项目https://github.com/angelaHillier/ContinuousGestureBasics-WPF)的可行性。 这是甚至理论上可能(运行C#的Kinect的Docker for Windows容器?) 如果答案是肯定的,这里有一些额外的细节: 我使用微软/ dotnet框架:4.7图像作为基础,我的初始Dockerfile如下所示: FROM microsoft/dotnet-framework:4.7 ADD . /home/gesture WORKDIR /home/gesture build立图像: $ docker build -t kinect . 打开容器: $ docker run -dit –name kinectContainer kinect 附加到一个PowerShell会话猴子周围: $ docker exec -it kinectContainer powershell 当我尝试从Docker容器中运行我的手势应用程序时,出现以下错误(这是因为在容器中没有安装Kinect SDK而预期的): Unhandled Exception: System.BadImageFormatException: Could not load file or assembly 'Microsoft.Kinect, Version=2.0.0.0, […]