tbf/TBF/Rig/GenericDevices/IRegReaderStillCamera.cs
2021-10-26 19:38:09 +02:00

29 lines
723 B
C#

///
/// Copyright (c) 2017-2020 Sensus Slovensko a.s.
///
using Common;
using TBF.Rig.Generic;
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,
ImageRotation imageRotation);
}
}