Reputation: 47
Well, I'm stucked in displaying the VideoFrame.
VideoFrame inputVideoFrame, croppedFace=null;
croppedFace = new VideoFrame(BitmapPixelFormat.Bgra8, (int)width, (int)height, BitmapAlphaMode.Ignore);
await inputVideoFrame.CopyToAsync(croppedFace, cropBounds, null);
I want to display the VideoFrame type, inputVideoFrame on xaml. (on image or captureelement)
Is there any way to do it?
Upvotes: 1
Views: 182