11 lines
231 B
C#
11 lines
231 B
C#
|
|
namespace MainShell.Process
|
||
|
|
{
|
||
|
|
public interface IWaferRecognitionResultCollector
|
||
|
|
{
|
||
|
|
void Add(WaferRecognitionFrameResult frameResult);
|
||
|
|
|
||
|
|
WaferRecognitionSnapshot CreateSnapshot();
|
||
|
|
|
||
|
|
void Reset();
|
||
|
|
}
|
||
|
|
}
|