List of available python bindings

asked 2015-02-04 12:49:19 -0600

Duffycola gravatar image

Is there a file or some other way of quickly finding a list of all available python bindings, especially also the constants. This is both interesting to be answered for both cases with and without source code.

edit retag flag offensive close merge delete

Comments

1

just:

 >>> import cv2
 >>> help(cv2)
berak gravatar imageberak ( 2015-02-04 12:50:57 -0600 )edit

Thanks! Consider adding it as an actual "answer".

Duffycola gravatar imageDuffycola ( 2015-02-04 13:48:39 -0600 )edit

A colleague just pointed out you can use ipython as an interactive python shell and press cv2.<tab>

Duffycola gravatar imageDuffycola ( 2015-02-04 13:49:04 -0600 )edit