SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
878 B

4 years ago
  1. # XR Camera Subsystem
  2. The camera subsystem is responsible for managing a hardware camera on the AR device. It provides the following data concerning the camera:
  3. - Camera image (as an "external" texture on the GPU).
  4. - Camera image (as a buffer of bytes available on the CPU).
  5. - Projection matrix, used to set the field of view and other properties of the virtual camera according to the physical one.
  6. - Display matrix, used to orient the camera image correctly.
  7. - Camera intrinsics describing a mathematical model of the camera. Useful for computer vision algorithms.
  8. - Camera conversion utilities, for converting the CPU image to RGB and grayscale.
  9. - Light estimation information (color and brightness of the environment).
  10. - Camera focus mode (i.e., autofocus vs fixed)
  11. See the [Script API Reference](../api/UnityEngine.XR.ARSubsystems.XRCameraSubsystem.html) for API details.