2

我试图简单地将 OpenCV 文档添加到 Pycharm,以便我可以快速查找我想要的任何元素的文档(SHIFT+F1)。例如,以下是 wx 的设置方式:

http://www.wxpython.org/docs/api/{module.name}.{class.name}-class.html#{function.name}

我不知道如何为 cv2 模块做同样的事情。

示例网址:docs.opencv.org/modules/core/doc/operations_on_arrays.html?highlight=split#cv2.split

这里中间的部分operations_on_arrays.html是有问题的,因为它对于功能组是不同的。

有没有办法解决这个问题?

4

1 回答 1

1

PyCharm's external documentation feature can only build an URL from the name of the module and/or function for which the documentation is requested. If you need a more flexible structure of the URLs, the only way to support external documentation is by writing a plugin for PyCharm.

于 2013-02-09T22:31:26.173 回答