我正在使用Extreme reality SDK我不知道你是否已经听过它,每次我都在这条线上运行我的c#项目:
GeneratorSingleton.Instance.Initialize(platformType, imgInfo);
我得到了这个例外:
Unable to load DLL '__Internal': The specified module could not be found.(Exception from HRESULT: 0x8007007E)
这里是我的代码: 使用系统; 使用System.Collections.Generic; 使用System.Linq; 使用System.Windows.Forms; 使用Xtr3D.Net; 使用Xtr3D.Net.BaseTypes; 使用Xtr3D.Net.ColorImage; 使用Xtr3D.Net.ExtremeMotion; 使用Xtr3D.Net.ExtremeMotion.Data; 使用Xtr3D.Net.ExtremeMotion.Interop.Types; 名称空间Ex_Real { 静态类程序 {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
// Initializing
Xtr3D.Net.BaseTypes.PlatformType platformType = new PlatformType();
Xtr3D.Net.ImageInfo imgInfo = new ImageInfo();
GeneratorSingleton.Instance.Initialize(platformType, imgInfo);
}
}
}
虽然我按照PDF中的说明操作并将以下DLL从SDK的“bin”文件夹复制到文件夹&#34; Debug&#34;应用程序正在运行:
XTR3D_ImageAcquisition.dll
Xtr3dInfra.dll
Xtr3dLogger.dll
Xtr3dManager.dll
Xtr3dSkeleton.dll
Xtr3D.Net.dll
Xtr3D.Net.ExtremeMotion.dll
EM_Trial.lic
并从SDK的“bin”文件夹中添加以下引用: Xtr3D.Net.dll Xtr3D.Net.ExtremeMotion.dll
所以我在这里错过了什么?任何帮助? 提前谢谢