28 lines
753 B
C#
28 lines
753 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IRoiForFixedStart : IComponent, IRegisterReader
|
|
{
|
|
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,
|
|
Config.Entities.ImageRotation imageRotation);
|
|
}
|
|
}
|