コード例 #1
0
ファイル: VideoCapture.cs プロジェクト: zhc341272/emgucv
 /// <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
ファイル: VideoCapture.cs プロジェクト: luwei001/emgucv
 internal static extern bool cveVideoCaptureSet(IntPtr capture, CvEnum.CapProp propertyId, double value);
コード例 #3
0
ファイル: VideoCapture.cs プロジェクト: zhc341272/emgucv
 /// <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
ファイル: VideoCapture.cs プロジェクト: luwei001/emgucv
 internal static extern double cveVideoCaptureGet(IntPtr capture, CvEnum.CapProp prop);