Пример #1
0
 /// <summary>
 /// Sets the specified property of video capturing
 /// </summary>
 /// <param name="property">Property identifier</param>
 /// <param name="value">Value of the property</param>
 /// <returns>True if success</returns>
 public bool SetCaptureProperty(CvEnum.CapProp property, double value)
 {
     return(CvInvoke.cveVideoCaptureSet(Ptr, property, value));
 }
Пример #2
0
 internal static extern bool cveVideoCaptureSet(IntPtr capture, CvEnum.CapProp propertyId, double value);
Пример #3
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.CapProp index)
 {
     return(CvInvoke.cveVideoCaptureGet(_ptr, index));
 }
Пример #4
0
 internal static extern double cveVideoCaptureGet(IntPtr capture, CvEnum.CapProp prop);