规范类名及命名空间名称
This commit is contained in:
@@ -28,18 +28,29 @@ public interface ICameraController : IDisposable
|
||||
void StopGrabbing();
|
||||
|
||||
double GetExposureTime();
|
||||
|
||||
void SetExposureTime(double microseconds);
|
||||
|
||||
double GetGain();
|
||||
|
||||
void SetGain(double value);
|
||||
|
||||
int GetWidth();
|
||||
|
||||
void SetWidth(int value);
|
||||
|
||||
int GetHeight();
|
||||
|
||||
void SetHeight(int value);
|
||||
|
||||
string GetPixelFormat();
|
||||
|
||||
void SetPixelFormat(string format);
|
||||
|
||||
event EventHandler<ImageGrabbedEventArgs> ImageGrabbed;
|
||||
|
||||
event EventHandler<GrabErrorEventArgs> GrabError;
|
||||
|
||||
event EventHandler ConnectionLost;
|
||||
}
|
||||
|
||||
@@ -50,4 +61,4 @@ public interface ICameraFactory
|
||||
{
|
||||
/// <summary>根据相机品牌创建控制器实例。</summary>
|
||||
ICameraController CreateController(string cameraType);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user