///
/// Copyright (c) 2017-2020 Sensus Slovensko a.s.
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IRegReaderLiveCamera : IRegReaderStillCamera
{
bool Detected { get; }
string ImageFileNamePrefix { get; } /// Either "detected.jpg" or string.Format("img{0}.jpg", nr) is appended
void ClearRoi();
void RegisterRoiToCamera();
double VolumeStart { get; } /// in l
double VolumeEnd { get; } /// in l
double TimestampStart { get; } /// in s
double TimestampEnd { get; } /// in s
///
/// Watermeter wheel/arrow detection process.
///
/// Reference to operation object instance
IOperation RoiDetectionOp();
}
}