cvGetCaptureProperty() приватный Метод

private cvGetCaptureProperty ( IntPtr capture, CvEnum prop ) : double
capture IntPtr
prop CvEnum
Результат double
Пример #1
0
 /// <summary>
 /// Obtain the capture property
 /// </summary>
 /// <param name="index">The index for the property</param>
 /// <returns>The value of the specific property</returns>
 public double GetCaptureProperty(CvEnum.CAP_PROP index)
 {
     return(CvInvoke.cvGetCaptureProperty(_ptr, index));
 }
Пример #2
0
 /// <summary>
 /// Obtain the capture property
 /// </summary>
 /// <param name="index">The index for the property</param>
 /// <returns>The value of the specific property</returns>
 public double GetCaptureProperty(CvEnum.CAP_PROP index)
 {
     return /*_captureModuleType == CaptureModuleType.FFMPEG ? CvInvoke.cvGetCaptureProperty_FFMPEG(Ptr, index) :*/ (CvInvoke.cvGetCaptureProperty(_ptr, index));
 }