///
/// Copyright (c) 2017-2020 Sensus Slovensko a.s.
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IRegReaderStillCamera : IRegReader
{
GenericDevices.ICamera Camera { get; }
///
/// Watermeter wheel/arrow detection process.
///
/// Reference to operation object instance
IOperation GrabImageOp(string imageFileName);
///
/// Watermeter wheel/arrow detection process.
///
/// Reference to operation object instance
IOperation GrabImageOp(string imageFileName,
bool blackAndWhite,
bool lowResolution,
Config.Entities.ImageRotation imageRotation);
}
}