Implement VideoCapture::get, CvCapture::getProperty, IVideoCapture::getProperty as constant methods.

This commit is contained in:
Artur Wieczorek
2014-12-10 18:17:35 +01:00
parent fed1b3fd59
commit 854a722c70
29 changed files with 127 additions and 114 deletions

View File

@@ -558,7 +558,7 @@ public:
**Note**: When querying a property that is not supported by the backend used by the VideoCapture
class, value 0 is returned.
*/
CV_WRAP virtual double get(int propId);
CV_WRAP virtual double get(int propId) const;
protected:
Ptr<CvCapture> cap;