Hi,
this is a common problem I have when using libraries: I want to use a function, however the documentation seem to be incomplete. Sometimes after extensive search I find out that in deed, not all parameters or methods available were listed in the docs.
I know I can look at the source code. However to me, this is not always helpful. If I am using python modules that have been written in cpp I find myself unable to figure out the names of the parameter/method in the python wrap.
Also my favorite python method of using inspect.getmembers() does not seem to work for wrapped libraries. All I can see are the data model methods, but not the parameters or normal methods.
So my questions is, how to go beyond the documentation in these cases? Is there something like "inspect.getmembers()" so I can extract all parameters and methods of an imported class?
particularly I am trying to figure out specifics of the cv2.SimpleBlobDetector.