29 lines
739 B
C#
29 lines
739 B
C#
///
|
|
/// 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
|
|
|
|
/// <summary>
|
|
/// Watermeter wheel/arrow detection process.
|
|
/// </summary>
|
|
/// <returns>Reference to operation object instance</returns>
|
|
IOperation RoiDetectionOp();
|
|
}
|
|
}
|