Commit 27edba49 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #16246 from VadimLevin:dev/vlevin/videoio_classes_cleanup

parents 0d456f91 3fe9dfaa
...@@ -638,7 +638,7 @@ public: ...@@ -638,7 +638,7 @@ public:
implementation if multiple are available: e.g. cv::CAP_FFMPEG or cv::CAP_IMAGES or cv::CAP_DSHOW. implementation if multiple are available: e.g. cv::CAP_FFMPEG or cv::CAP_IMAGES or cv::CAP_DSHOW.
@sa The list of supported API backends cv::VideoCaptureAPIs @sa The list of supported API backends cv::VideoCaptureAPIs
*/ */
CV_WRAP VideoCapture(const String& filename, int apiPreference = CAP_ANY); CV_WRAP explicit VideoCapture(const String& filename, int apiPreference = CAP_ANY);
/** @overload /** @overload
@brief Opens a camera for video capturing @brief Opens a camera for video capturing
...@@ -650,7 +650,7 @@ public: ...@@ -650,7 +650,7 @@ public:
@sa The list of supported API backends cv::VideoCaptureAPIs @sa The list of supported API backends cv::VideoCaptureAPIs
*/ */
CV_WRAP VideoCapture(int index, int apiPreference = CAP_ANY); CV_WRAP explicit VideoCapture(int index, int apiPreference = CAP_ANY);
/** @brief Default destructor /** @brief Default destructor
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment