///
/// Copyright (c) 2017 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IRoi : IComponent, IRegisterReader
{
GenericDevices.ICamera Camera { get; }
bool Detected { get; set; }
void RegisterRoiToCamera();
///
/// Watermeter wheel/arrow detection process.
///
/// Reference to operation object instance
IOperation RoiDetectionOp();
}
}