25 lines
594 B
C#
25 lines
594 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface ICameraDisplay : Generic.IComponent
|
|
{
|
|
/// <summary>
|
|
/// Display static images.
|
|
/// </summary>
|
|
/// <returns>Reference to operation object instance</returns>
|
|
IOperation ShowStaticImageOp(string[] imageFileNames, string title);
|
|
|
|
/// <summary>
|
|
/// Display static images.
|
|
/// </summary>
|
|
/// <returns>Reference to operation object instance</returns>
|
|
IOperation ShowLiveStreamOp(string[] imageFileNames, string title);
|
|
|
|
|
|
bool[] SelectedImages { get; }
|
|
}
|
|
}
|