我在虚拟机上安装了Windows 7 64位.我想在其上运行任何kinect驱动程序,如openni,openkinect或kinect sdk我不想在本机环境中运行它.
有没有办法在oracle虚拟盒上运行kinect?
[更新]我通过安装openni http://i.stack.imgur.com/R5ZIr.png完成了这项工作
但是kinect仍然不起作用
注意:主机是Ubuntu 10.10 64位
我的控制台应用程序中有托管的WCF服务,如下所示:
static void Main(string[] args)
{
Uri baseAddress = new Uri("http://localhost:8080/Test");
// Create the ServiceHost.
using (ServiceHost host = new ServiceHost(typeof(TestService), baseAddress))
{
// Enable metadata publishing.
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
host.Description.Behaviors.Add(smb);
host.Open();
Console.WriteLine("The Test service is ready at {0}", baseAddress);
Console.WriteLine("Press <Enter> to stop the service.");
Console.ReadLine();
// Close the ServiceHost.
host.Close();
}
}
Run Code Online (Sandbox Code Playgroud)
我在Windows应用商店(WinRT)应用程序中有一个客户端.我越来越
"(413请求实体太大"
当试图传递一个大字节数组.如何MaxReceivedMessageSize通过代码设置我的服务?