首页 \ 问答 \ 在UWP Windows 10应用程序上使用openCV(Using openCV on a UWP Windows 10 Application)

在UWP Windows 10应用程序上使用openCV(Using openCV on a UWP Windows 10 Application)

有没有办法在Windows 10的UWP应用程序上使用OpenCV库,而无需在openCV周围创建自己的包装器或购买Emgu CV包装器? 我知道有Android和iOS支持(如其页面中所述),但没有任何关于UWP或Windows 8商店应用程序的参考。 它只是声明支持Windows。


Is there a way to use OpenCV libraries on a UWP application for Windows 10 without needing to create my own wrappers around openCV or purchasing Emgu CV wrappers? I am aware that there is Android and iOS support (as stated in their page) but no reference for UWP or Windows 8 store apps whatsoever. It just states that Windows is supported.


原文:https://stackoverflow.com/questions/34309067
更新时间:2023-05-20 11:05

最满意答案

对于尚未定义的Client类,可以使用字符串名称来使用前向引用

class Server():
    def register_client(self, client: 'Client')
        pass

You can use a forward reference by using a string name for the not-yet-defined Client class:

class Server():
    def register_client(self, client: 'Client')
        pass

As of Python 3.7, you can also postpone all runtime parsing of annotations by adding the following __future__ import at the top of your module:

from __future__ import annotations

at which point the annotations are stored as string representations of the abstract syntax tree for the expression; you can use typing.get_type_hints() to resolve those (and resolve forward references as used above).

See PEP 563 -- Postponed Evaluation of Annotations for details; this behaviour will be the default in Python 4.0.

相关问答

更多
  • 对于尚未定义的Client类,可以使用字符串名称来使用前向引用 : class Server(): def register_client(self, client: 'Client') pass You can use a forward reference by using a string name for the not-yet-defined Client class: class Server(): def register_client(self, clien ...
  • 如果你删除标题中的所有#includes并将它们放在源文件中,那么一切都应该编译。 您不需要包含,因为您具有在这种情况下足够的前向声明,因为您只对前向声明的类使用const引用。 (注意:以前的语句仅在您的示例代码模仿您的实际代码时才成立)。 您还可以添加包含声明的单独标题forward.h,而不是在任何地方重复: namesapce NS { class A; class B; class C; class D; } 现在制作Ah,Bh等#include forward.h ,你不再需要 ...
  • typedef struct IExample_s IExample; typedef long SetStringPtr( IExample *, char * ); typedef long GetStringPtr( IExample *, char *, long ); typedef struct { SetStringPtr * SetString; GetStringPtr * GetString; } IExampleVtbl; struct IExample_s { ...
  • 您正在尝试通过将authInterceptor注入$httpProvider来定义$http的预处理功能,但是authInterceptor依赖于$http ,它会导致循环依赖问题。 为了解决这个循环依赖问题,您可以使用$injector服务来连接Ace app.factory('authInterceptor', ['$rootScope', '$q', '$window', '$injector', function($rootScope, $q, $window, $injector) { r ...
  • 你需要limited with ,这是为了解决这个问题。 请参阅Ada 2005的基本原理,第4.2节 。 Animals和Persons是对称的(我的编辑器调整了布局和外壳;我为每个添加了一个记录组件,因此下面的演示程序可以打印一些东西): limited with Animals; package Persons is -- One of the few things you can do with an incomplete type, which -- is what Animal ...
  • 使用DI可以解决循环依赖关系,但只能使用“延迟”或“属性”注入,而不能使用“构造函数”注入。 您需要先构造对象,然后设置它们的属性以注入依赖关系。 支持属性注入的DI容器可以将这些细节抽象出来。 These circular dependencies are not being solved. The standard answer in these situations is to assign the dependency after construction. This solves the prob ...
  • 您可以使用Injector 。 像往常一样通过构造函数注入它,然后当您需要一些导致循环依赖的服务时,从中获取该服务。 class HttpService { constructor(private injector: Injector) { } doSomething() { const auth = this.injector.get(AuthService); // use auth as usual } } You can use Injector for this. ...
  • 由于这是一个DESEngine和UserEvents之间has a关系,在它的类结构中你可以稍微重新设计你的类,不应该失去任何功能。 设计的这种微小变化应该改善内存管理以及类之间的关系或联系。 当一个类Has a 或Owns另一个class或structure的object ,拥有类只需要在自己的header包含对象header ,并且不需要class prototype declaration 。 现在属于另一个的类不应该在自己的头中包含拥有类的header ,但是需要class prototype ...
  • 您可以创建第三个项目并从两个现有项目中引用它。 一些不好的ascii结构图: ModelProject + contains BaseStats ^ ^ | | | | IdentityProvider <-- HobbyAPI + used BaseStats + uses BaseStats + ...
  • 你有循环包含的标题。 Lane包含graphdefinitions,其中包括lane,其中包括graphdefinitions等,这是你问题的原因。 编辑:我意识到这已经在OP中提到了。 这个问题的解决方案是PIMPL。 编辑:我实际上做的是将typedef放在Lane类中。 这应该以最简单的方式解决问题。 You have circularly included headers. Lane includes graphdefinitions, which includes lane, which incl ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)