Files

11 lines
231 B
C#
Raw Permalink Normal View History

namespace MainShell.Process
{
public interface IWaferRecognitionResultCollector
{
void Add(WaferRecognitionFrameResult frameResult);
WaferRecognitionSnapshot CreateSnapshot();
void Reset();
}
}