与 cvextern.dll 文件有关的错误(C# 中的 opencv)
当我添加此文件 (cvextern.dll) 来引用或使用 cmd 中的命令 csc 时。我收到此错误
fatal error CS0009: Metadata file "file_path"无法打开 -- '尝试加载程序格式不正确。 ’
为什么会这样?我该如何解决?
谢谢大家
when I add this file (cvextern.dll) to reference or I use the command csc from cmd .. I get this error
fatal error CS0009: Metadata file "file_path" could not be opened -- 'An attempt was made to load a program with an incorrect format. '
why is that happen? How can I solve it?
thank you all
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
汉斯·帕桑特的评论是正确的。使用 EMGU 时,应将文件 cvextern.dll 复制到运行程序的输出文件夹中,或者作为现有项目添加到项目中。然后在解决方案资源管理器中选择该项目,并在属性面板中将其属性“复制到输出目录”更改为 CopyAlways。请参阅http://www.emgu.com/wiki/index.php/Download_And_Installation 有关正确使用文件的更多信息。
干杯
克里斯
The comment by Hans Passant is correct. The file cvextern.dll when using EMGU should either be copied into your output folder where your program is running or added to your project as an existing item. Then select the item in solution explorer and change its properties in the properties panel "Copy to Output Directory" to CopyAlways. See http://www.emgu.com/wiki/index.php/Download_And_Installation for more information on proper use of the files.
Cheers
Chris