Home
last modified time | relevance | path

Searched refs:propIdx (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/videoio/src/
Dcap_openni2.cpp95 virtual double getProperty(int propIdx) const;
127 double getDepthGeneratorProperty(int propIdx) const;
128 bool setDepthGeneratorProperty(int propIdx, double propVal);
129 double getImageGeneratorProperty(int propIdx) const;
130 bool setImageGeneratorProperty(int propIdx, double propVal);
131 double getCommonProperty(int propIdx) const;
132 bool setCommonProperty(int propIdx, double propVal);
398 double CvCapture_OpenNI2::getProperty( int propIdx ) const in getProperty()
404 int purePropIdx = propIdx & ~CV_CAP_OPENNI_GENERATORS_MASK; in getProperty()
406 if( (propIdx & CV_CAP_OPENNI_GENERATORS_MASK) == CV_CAP_OPENNI_IMAGE_GENERATOR ) in getProperty()
[all …]
Dcap_intelperc.hpp37 virtual double getProperty(int propIdx) const;
38 virtual bool setProperty(int propIdx, double propVal);
65 virtual double getProperty(int propIdx) const;
66 virtual bool setProperty(int propIdx, double propVal);
79 virtual double getProperty(int propIdx) const;
80 virtual bool setProperty(int propIdx, double propVal);
97 virtual double getProperty(int propIdx) const;
98 virtual bool setProperty(int propIdx, double propVal);
Dcap_intelperc.cpp49 double IntelPerCStreamBase::getProperty(int propIdx) const in getProperty()
52 switch (propIdx) in getProperty()
81 bool IntelPerCStreamBase::setProperty(int propIdx, double propVal) in setProperty() argument
84 switch (propIdx) in setProperty()
213 double IntelPerCStreamImage::getProperty(int propIdx) const in getProperty()
215 switch (propIdx) in getProperty()
309 return IntelPerCStreamBase::getProperty(propIdx); in getProperty()
311 bool IntelPerCStreamImage::setProperty(int propIdx, double propVal) in setProperty() argument
313 switch (propIdx) in setProperty()
380 return IntelPerCStreamBase::setProperty(propIdx, propVal); in setProperty()
[all …]
Dcap_openni.cpp449 virtual double getProperty(int propIdx) const;
480 double getDepthGeneratorProperty(int propIdx) const;
481 bool setDepthGeneratorProperty(int propIdx, double propVal);
482 double getImageGeneratorProperty(int propIdx) const;
483 bool setImageGeneratorProperty(int propIdx, double propVal);
484 double getCommonProperty(int propIdx) const;
485 bool setCommonProperty(int propIdx, double propVal);
774 double CvCapture_OpenNI::getProperty( int propIdx ) const in getProperty()
780 int purePropIdx = propIdx & ~CV_CAP_OPENNI_GENERATORS_MASK; in getProperty()
782 if( (propIdx & CV_CAP_OPENNI_GENERATORS_MASK) == CV_CAP_OPENNI_IMAGE_GENERATOR ) in getProperty()
[all …]
Dcap_dshow.hpp29 virtual double getProperty(int propIdx) const;
30 virtual bool setProperty(int propIdx, double propVal);
Dcap_dshow.cpp3153 double VideoCapture_DShow::getProperty(int propIdx) const
3158 switch (propIdx)
3181 …if (g_VI.getVideoSettingFilter(m_index, g_VI.getVideoPropertyFromCV(propIdx), min_value, max_value…
3192 …if (g_VI.getVideoSettingCamera(m_index, g_VI.getCameraPropertyFromCV(propIdx), min_value, max_valu…
3199 bool VideoCapture_DShow::setProperty(int propIdx, double propVal)
3203 switch (propIdx)
3265 if (propIdx == CV_CAP_PROP_SETTINGS )
3272 switch (propIdx)
3284 … return g_VI.setVideoSettingFilter(m_index, g_VI.getVideoPropertyFromCV(propIdx), (long)propVal);
3288 switch (propIdx)
[all …]