1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +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
+2 -2
View File
@@ -80,7 +80,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);
@@ -242,7 +242,7 @@ IplImage* CvCaptureCAM_PvAPI::retrieveFrame(int)
else return NULL;
}
double CvCaptureCAM_PvAPI::getProperty( int property_id )
double CvCaptureCAM_PvAPI::getProperty( int property_id ) const
{
tPvUint32 nTemp;