HolographicCameraRenderingParameters.DepthReprojectionMethod Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la méthode de reprojection utilisée pour l’HolographicCamera associée pour un HolographicFrame donné. Le système sélectionne une méthode de reprojection par défaut en fonction des fonctionnalités de l’appareil et/ou de la plateforme.
public:
property HolographicDepthReprojectionMethod DepthReprojectionMethod { HolographicDepthReprojectionMethod get(); void set(HolographicDepthReprojectionMethod value); };
HolographicDepthReprojectionMethod DepthReprojectionMethod();
void DepthReprojectionMethod(HolographicDepthReprojectionMethod value);
public HolographicDepthReprojectionMethod DepthReprojectionMethod { get; set; }
var holographicDepthReprojectionMethod = holographicCameraRenderingParameters.depthReprojectionMethod;
holographicCameraRenderingParameters.depthReprojectionMethod = holographicDepthReprojectionMethod;
Public Property DepthReprojectionMethod As HolographicDepthReprojectionMethod
Valeur de propriété
Méthode de reprojection à utiliser pour l’appareil photo associé pour un HolographicFrame donné.
Configuration requise pour Windows
Famille d’appareils |
Windows 10, version 2104 (introduit dans 10.0.20348.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v12.0)
|
Exemples
À compter de [version du KIT DE DÉVELOPPEMENT LOGICIEL À déterminer], les applications doivent utiliser la propriété HolographicCameraRenderingParameters.DepthReprojectionMethod pour sélectionner le mode AutoPlanar afin d’activer la LSR de profondeur planaire automatique. L’exemple suivant montre comment définir la méthode de reprojection de profondeur. Cette opération doit être effectuée sur chaque HolographicFrame où l’application doit activer le mode LSR de profondeur planaire automatique :
renderingParameters.DepthReprojectionMethod(HolographicDepthReprojectionMethod::AutoPlanar);
Avant [version du Kit de développement logiciel (SDK) à déterminer], les applications devaient appeler SetFocusPoint avec une valeur de point afin d’activer {0,0,0} la fonction LSR de profondeur planaire automatique sur HoloLens 2. Les applications compilées sur le Kit de développement logiciel (SDK) [tbD version] ou ultérieure doivent être mises à jour pour définir la propriété DepthReprojectionMethod à la place.
renderingParameters.SetFocusPoint(m_stationaryReferenceFrame.CoordinateSystem(), { 0,0,0 });
Remarques
Les applications qui utilisent un mode particulier peuvent utiliser cette propriété pour sélectionner le mode sur les appareils qui prennent en charge ce mode. Vérifiez les modes pris en charge sur un appareil en appelant HolographicViewConfiguration.SupportedDepthReprojectionMethods.