tbf/TBF/BenchControl/GenericDevices/IRegReaderStillCamera.cs

29 lines
741 B
C#

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