Handle multiple camera capture UWP

Solution 1:

As we know, for UWP app, the simplest way to capture photos and video is using the MediaCapture class. See Basic photo, video, and audio capture with MediaCapture.

In this official sample Camera frames sample, it shows how to list all capture source and access camera with different profile.

So do we have any ways to manage all camera capture stream sand process it?

We can initialize multiple MediaCapture instances and read frame by using MediaFrameReader Class. Check out this wrapper to see how to process frame as you need.

Share a multiple camera sample based on the above official sample: Github LINK

The screenshot(Running on my laptop which connected a Microsoft Life Camera HD-3000):

enter image description here