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

@@ -16,7 +16,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);
@@ -226,7 +226,7 @@ void CvCaptureCAM_XIMEA::resetCvImage()
}
/**********************************************************************************/
double CvCaptureCAM_XIMEA::getProperty( int property_id )
double CvCaptureCAM_XIMEA::getProperty( int property_id ) const
{
if(hmv == NULL)
return 0;