简体   繁体   English

Python OpenCV Stitcher类文档

[英]Python OpenCV Stitcher Class documentation

Could you please give me some hint where can I find a detailed documentation for the Python Stitcher Class? 能否请给我一些提示我在哪里可以找到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. 我能够找到示例并实现它们,但我想更多地了解这个类及其功能。

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: OpenCV的Python支持基本上是一组用于低级C ++函数的绑定,因此您可以查看C ++文档:

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

, with some C++ examples quoted in the docs. ,在文档中引用了一些C ++示例。

A more general overview of the stitching in OpenCV can be found at: 有关OpenCV中拼接的更一般概述,请访问:

https://docs.opencv.org/trunk/d1/d46/group__stitching.html 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 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. 我知道以上所有都是C ++,但OpenCV主要是一个带有Python绑定的C ++库。 Just having a look around can help tremendously. 只是环顾四周会有很大帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM