2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2017-01-14 21:21:58 +00:00
|
|
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using TBF.BenchControl.Generic;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
2017-01-16 14:51:34 +00:00
|
|
|
|
public interface IRoi : IComponent, IRegisterReader
|
2014-07-28 07:54:35 +00:00
|
|
|
|
{
|
|
|
|
|
|
GenericDevices.ICamera Camera { get; }
|
2017-01-16 14:51:34 +00:00
|
|
|
|
|
|
|
|
|
|
bool Detected { get; set; }
|
|
|
|
|
|
|
2017-01-24 09:50:53 +00:00
|
|
|
|
void RegisterRoiToCamera();
|
2017-01-22 19:39:14 +00:00
|
|
|
|
|
2014-07-28 07:54:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Watermeter wheel/arrow detection process.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>Reference to operation object instance</returns>
|
2017-01-14 21:21:58 +00:00
|
|
|
|
IOperation RoiDetectionOp();
|
2014-07-28 07:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|