Showing processed images from an IP camera
问题 I have an IP-camera that serves images. These images are then processed via EmguCV and then I want to display the processed images. To show the images, I use this code: Window1(){ ... this.Dispatcher.Hooks.DispatcherInactive += new EventHandler(Hooks_DispatcherInactive); } Hooks_DispatcherInactive(...) { Next() } Next() the calls calls the image processing methods and (should) display the image: MatchResult? result = survey.Step(); if (result.HasValue) { Bitmap bit = result.Value.image.Bitmap