1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

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
+4 -4
View File
@@ -99,7 +99,7 @@ public:
virtual bool open( const char* filename );
virtual void close();
virtual double getProperty(int);
virtual double getProperty(int) const;
virtual bool setProperty(int, double);
virtual bool grabFrame();
virtual IplImage* retrieveFrame(int);
@@ -238,7 +238,7 @@ IplImage* CvCaptureAVI_VFW::retrieveFrame(int)
return 0;
}
double CvCaptureAVI_VFW::getProperty( int property_id )
double CvCaptureAVI_VFW::getProperty( int property_id ) const
{
switch( property_id )
{
@@ -317,7 +317,7 @@ public:
virtual bool open( int index );
virtual void close();
virtual double getProperty(int);
virtual double getProperty(int) const;
virtual bool setProperty(int, double);
virtual bool grabFrame();
virtual IplImage* retrieveFrame(int);
@@ -541,7 +541,7 @@ IplImage* CvCaptureCAM_VFW::retrieveFrame(int)
}
double CvCaptureCAM_VFW::getProperty( int property_id )
double CvCaptureCAM_VFW::getProperty( int property_id ) const
{
switch( property_id )
{