- using System.Windows.Media;
- namespace TeamAAS.Camera.UI
- {
- /// <summary>
- /// 可选能力:愿意接收实时取相画面的调试页实现此接口。
- /// 宿主在收到取相回调时,会把 BitmapSource 推送给当前显示且实现了该接口的页面。
- /// 参数传 null 表示清除画面。
- /// </summary>
- public interface ICameraImageSink
- {
- void ShowImage(ImageSource image);
- }
- }
|