30 lines
744 B
C#
30 lines
744 B
C#
///
|
|
/// Copyright (c) 2017-2020 Sensus Slovensko a.s.
|
|
///
|
|
|
|
namespace TBF.Rig.GenericDevices
|
|
{
|
|
public interface IRegReaderStillCamera : IRegReader
|
|
{
|
|
GenericDevices.ICamera Camera { get; }
|
|
|
|
/// <summary>
|
|
/// Watermeter wheel/arrow detection process.
|
|
/// </summary>
|
|
/// <returns>Reference to operation object instance</returns>
|
|
IOperation GrabImageOp(string imageFileName);
|
|
|
|
/// <summary>
|
|
/// Watermeter wheel/arrow detection process.
|
|
/// </summary>
|
|
/// <returns>Reference to operation object instance</returns>
|
|
IOperation GrabImageOp(string imageFileName,
|
|
bool blackAndWhite,
|
|
bool lowResolution,
|
|
Common.ImageRotation imageRotation);
|
|
|
|
//if has valve return it
|
|
IValve GetValve();
|
|
}
|
|
}
|