2

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.

1 Answer 1

5

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.