version:2.1.5
bugfixes: update:拨号使用ocr进行识别
This commit is contained in:
@@ -7,8 +7,7 @@
|
||||
|
||||
#include <opencv2/videoio.hpp>
|
||||
|
||||
namespace cv {
|
||||
namespace videoio_registry {
|
||||
namespace cv { namespace videoio_registry {
|
||||
/** @addtogroup videoio_registry
|
||||
This section contains API description how to query/configure available Video I/O backends.
|
||||
|
||||
@@ -25,36 +24,24 @@ Runtime configuration options:
|
||||
/** @brief Returns backend API name or "UnknownVideoAPI(xxx)"
|
||||
@param api backend ID (#VideoCaptureAPIs)
|
||||
*/
|
||||
CV_EXPORTS_W cv::String
|
||||
getBackendName(VideoCaptureAPIs
|
||||
api);
|
||||
CV_EXPORTS_W cv::String getBackendName(VideoCaptureAPIs api);
|
||||
|
||||
/** @brief Returns list of all available backends */
|
||||
CV_EXPORTS_W std::vector<VideoCaptureAPIs>
|
||||
|
||||
getBackends();
|
||||
CV_EXPORTS_W std::vector<VideoCaptureAPIs> getBackends();
|
||||
|
||||
/** @brief Returns list of available backends which works via `cv::VideoCapture(int index)` */
|
||||
CV_EXPORTS_W std::vector<VideoCaptureAPIs>
|
||||
|
||||
getCameraBackends();
|
||||
CV_EXPORTS_W std::vector<VideoCaptureAPIs> getCameraBackends();
|
||||
|
||||
/** @brief Returns list of available backends which works via `cv::VideoCapture(filename)` */
|
||||
CV_EXPORTS_W std::vector<VideoCaptureAPIs>
|
||||
|
||||
getStreamBackends();
|
||||
CV_EXPORTS_W std::vector<VideoCaptureAPIs> getStreamBackends();
|
||||
|
||||
/** @brief Returns list of available backends which works via `cv::VideoWriter()` */
|
||||
CV_EXPORTS_W std::vector<VideoCaptureAPIs>
|
||||
|
||||
getWriterBackends();
|
||||
CV_EXPORTS_W std::vector<VideoCaptureAPIs> getWriterBackends();
|
||||
|
||||
/** @brief Returns true if backend is available */
|
||||
CV_EXPORTS bool hasBackend(VideoCaptureAPIs
|
||||
api);
|
||||
CV_EXPORTS bool hasBackend(VideoCaptureAPIs api);
|
||||
|
||||
//! @}
|
||||
}
|
||||
} // namespace
|
||||
}} // namespace
|
||||
|
||||
#endif // OPENCV_VIDEOIO_REGISTRY_HPP
|
||||
|
||||
Reference in New Issue
Block a user