using AI.Common.Interface;
using System;
namespace CustomizeDiagnosisSDK.Interfaces
{
public interface IImageProvider
{
///
/// Raised when a ImageInputData Image provided by the provider.
///
event EventHandler ImageProvided;
///
/// Start the provider
///
void Start();
///
/// Stop the provider
///
void Stop();
}
}