How to find the documentation of Python API?
Given an OpenCV 3.2 API method, class, etc. in C++, how can I find the corresponding method, class, etc. in Python? Is it documented somewhere?
E.g., the C++ API has a function called void cv::HoughLinesP(); how do I find the signature of the corresponding function in Python?
Thanks!