Kristan
Kristan

Reputation: 387

Python OpenCV Stitcher Class documentation

Could you please give me some hint where can I find a detailed documentation for the Python Stitcher Class?

I was able to find examples, and implemented them but I'd like to know more about this class and its capabilities.

Upvotes: 2

Views: 1650

Answers (1)

Paul92
Paul92

Reputation: 9062

The Python support from OpenCV is basically a set of bindings for the lower level C++ functions, so you can have a look at the C++ documentation for it:

https://docs.opencv.org/trunk/d2/d8d/classcv_1_1Stitcher.html

, with some C++ examples quoted in the docs.

A more general overview of the stitching in OpenCV can be found at:

https://docs.opencv.org/trunk/d1/d46/group__stitching.html

It might also help to have a look at the backend code for the stitcher:

https://github.com/opencv/opencv/blob/master/modules/stitching/src/stitcher.cpp

I know all the above is C++, but OpenCV is mainly a C++ library with Python bindings. Just having a look around can help tremendously.

Upvotes: 5

Related Questions