tbf/TestBenchFramework/BenchControl/GenericDevices/IRoi.cs

29 lines
652 B
C#

///
/// Copyright (c) 2017 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IRoi : IComponent, IRoiForFixedStart
{
bool Detected { get; }
string DetectedImageName { get; }
void ClearRoi();
void RegisterRoiToCamera();
double VolumeStart { get; } /// in l
double VolumeEnd { get; } /// in l
double TimestampStart { get; } /// in s
double TimestampEnd { get; } /// in s
/// <summary>
/// Watermeter wheel/arrow detection process.
/// </summary>
/// <returns>Reference to operation object instance</returns>
IOperation RoiDetectionOp();
}
}