27 lines
720 B
C#
27 lines
720 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface ICameraRoi : IComponent, IRegisterReader
|
|
{
|
|
GenericDevices.ICamera Camera { get; }
|
|
|
|
/// <summary>
|
|
/// Watermeter wheel/arrow detection process.
|
|
/// </summary>
|
|
/// <param name="roiId">Region of interest (1..4)</param>
|
|
/// <returns>Reference to operation object instance</returns>
|
|
IOperation DetectOp();
|
|
|
|
/// <summary>
|
|
/// Watermeter wheel/arrow angle measurement process.
|
|
/// </summary>
|
|
/// <param name="roiId">Region of interest (1..4)</param>
|
|
/// <returns>Reference to operation object instance</returns>
|
|
IOperation MeasureOp();
|
|
}
|
|
}
|