3

I'm trying to simply add the OpenCV documentation to Pycharm so that I can quickly look up the documenation of any element I want to (SHIFT+F1). For example,here's how wx has beens setup:

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

I can't figure out how to do the same for the cv2 module.

Example URL: docs.opencv.org/modules/core/doc/operations_on_arrays.html?highlight=split#cv2.split

Here The part in the middle operations_on_arrays.html is problematic as it's different for groups of functions.

Is there a way to get around this?

1
  • Opening via search url is an option: https://www.google.com/search?q="{element.name}" {element.qname} site:https://docs.opencv.org/4.x, add this url in the PyCharm external documentation window for cv2 library. Commented May 2, 2024 at 10:50

1 Answer 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.

Sign up to request clarification or add additional context in comments.

1 Comment

I understand, I was simply hoping that there would be an alternate reference URL to the OpenCV documentation pages whic h would involve only the module name and the function name.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.