There seems to be no Python API for the Open CV stitcher class

asked 2015-07-18 22:08:32 -0600

desri gravatar image

Hi,

I am using OpenCV-3.0.0 with Python 2.7x in Ubuntu 14.04 LTS. I can't find Python bindings for the OpenCV stitcher class. Could someone tell me how to generate those bindings? Btw, I built OpenCV-3.0.0 beta version and created the Python bindings.

edit retag flag offensive close merge delete

Comments

ah, you just did not find it ;)

>>> help (cv2.createStitcher())
Help on Stitcher object:

class Stitcher(__builtin__.object)
 |  Methods defined here:
 |
 |  __repr__(...)
 |      x.__repr__() <==> repr(x)
 |
 |  composePanorama(...)
 |      composePanorama([, pano]) -> retval, pano
 |
 |  compositingResol(...)
 |      compositingResol() -> retval
 |
 |  estimateTransform(...)
 |      estimateTransform(images) -> retval
 |
 |  panoConfidenceThresh(...)
 |      panoConfidenceThresh() -> retval
 | .... (more)
berak gravatar imageberak ( 2015-07-18 23:07:44 -0600 )edit
1

Thanks! If only Open-CV for Python documentation had mentioned about how to use the Stitcher class.

desri gravatar imagedesri ( 2015-07-18 23:27:18 -0600 )edit