Exemplo n.º 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>
 public void SetCaptureProperty(CAP_PROP property, double value)
 {
     CvInvoke.cvSetCaptureProperty(Ptr, property, value);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Sets the specified property of video capturing
 /// </summary>
 /// <param name="property">Property identifier</param>
 /// <param name="value">Value of the property</param>
 public void SetCaptureProperty(CAP_PROP property, double value)
 {
     CvInvoke.cvSetCaptureProperty(Ptr, property, value);
 }
Exemplo n.º 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(CAP_PROP index)
 {
     return CvInvoke.cvGetCaptureProperty(_ptr, index);
 }
Exemplo n.º 4
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(CAP_PROP index)
 {
     return(CvInvoke.cvGetCaptureProperty(_ptr, index));
 }