Where is python source code/bindings - want to look into StereoBM?
I'm really struggling to find where the python source code of opencv is. For c++ I can find it in the modules directory but I'm stumped when it comes to the python. I've got the .pyd file that I think is like a dll and enables me to use the code but that won't let me look at the code or the bindings.
In particular I want to understand how to set values in cv2.StereoBM such as min disparity and uniqueness ratio. Currently I'm only able to use the presets.
Thanks
the python wrappers are generated from the c++ api. if you did build opencv locally, you will have the code in opencv/build/modules/python
it's probably far easier, to query python's builtin help(shown here for opencv3.0:
Thanks Berak that answered it for me.