SpectatorView
is a multi-device experience that allows HoloLens applications to be viewed by additional devices at their own viewpoints. It offers functionality for unidirectional content synchronization (State Synchronization) and leverages spatial coordinates for scene alignment (Spatial Alignment). It can be used to enable a variety of different filming scenarios including prototype documentation and keynote demos.
- Spectating with an Android or iOS device
- Spectating with a video camera rig
- The mobile device begins tracking its location in the world relative to its local application origin using ARCore\ARKit\ARFoundation.
- The mobile device connects directly to a socket open on the HoloLens device.
- The mobile device and HoloLens device both locate a shared spatial coordinate relative to their local application origins.
- The mobile device applies a transform to its camera based on the location of this spatial coordinate in the two local application spaces. After applying this transform, the perceived application origin on the mobile device is located in the same physical position as the local application origin on the HoloLens device.
- The HoloLens begins sending scene information to the mobile device. The mobile device then updates its local application content to reflect what's being observed on the HoloLens device.
- The screen of the mobile device can then be recorded to film the HoloLens experience.
- A HoloLens is mounted to the video camera. Calibration is then performed to calculate camera intrinsics (Properties such as lens focal length and principal points that are needed for compositing holograms into the video camera feed) and camera extrinsics (The transform of the video camera to the mounted HoloLens). This data is stored on this HoloLens mounted to the video camera.
- The PC obtains a video camera stream through a capture card.
- The PC connects to sockets open on both the user HoloLens and video camera rig HoloLens through the unity editor.
- The PC obtains camera intrinsic and extrinsic information from the DSLR mounted HoloLens and updates its unity camera to reflect these values.
- The PC instructs both HoloLenses to locate a shared spatial coordinate.
- The PC listens to pose updates from the DSLR mounted HoloLens. Using the camera extrinsics, pose updates and original shared coordinate location, the PC updates its unity camera to have its local application origin reflect the user HoloLens's application origin.
- The user HoloLens begins sending scene information to the PC. The PC then updates its local application content to reflect what's being observed on the user's HoloLens device.
- The PC then composites this application content into the video camera stream. This composited content can then be output via the capture card.
- The composited content can then be recorded to images on the PC that can later be combined into a video.
For more information on spatial alignment, see here.
For more information on state synchronization, see here.
For more information on compositing and recording, see here.
For more information on recording with a video camera, see here.
For more information on creating and customizing UI, see here.