///
/// Copyright (c) 2017 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IRoiForFixedStart : IComponent, IRegisterReader
{
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);
}
}