├── BuildSettings.jpg ├── HLWithDlibExampleMRTK2 └── Assets │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.meta │ └── HoloLensWithDlibFaceLandmarkDetectorExample │ ├── HLARHeadExample.meta │ ├── HLARHeadExample │ ├── AR.meta │ ├── AR │ │ ├── EyeLaser.meta │ │ ├── EyeLaser │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── eff_glitter_2.mat │ │ │ │ ├── eff_glitter_2.mat.meta │ │ │ │ ├── eff_par_1.mat │ │ │ │ ├── eff_par_1.mat.meta │ │ │ │ ├── eff_smoke_2.mat │ │ │ │ └── eff_smoke_2.mat.meta │ │ │ ├── Prefab.meta │ │ │ ├── Prefab │ │ │ │ ├── Eff_Laser_2.prefab │ │ │ │ └── Eff_Laser_2.prefab.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Eff_Glitter2.png │ │ │ │ ├── Eff_Glitter2.png.meta │ │ │ │ ├── Eff_smoke_1.png │ │ │ │ ├── Eff_smoke_1.png.meta │ │ │ │ ├── eff_par_1.tga │ │ │ │ └── eff_par_1.tga.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── axes_x_material.mat │ │ │ ├── axes_x_material.mat.meta │ │ │ ├── axes_y_material.mat │ │ │ ├── axes_y_material.mat.meta │ │ │ ├── axes_z_material.mat │ │ │ ├── axes_z_material.mat.meta │ │ │ ├── head_material.mat │ │ │ └── head_material.mat.meta │ │ ├── MouthLaser.meta │ │ ├── MouthLaser │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── eff_heart_1.mat │ │ │ │ └── eff_heart_1.mat.meta │ │ │ ├── Prefab.meta │ │ │ ├── Prefab │ │ │ │ ├── Eff_Laser_5.prefab │ │ │ │ └── Eff_Laser_5.prefab.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Eff_Heart_1.png │ │ │ │ └── Eff_Heart_1.png.meta │ │ ├── Prefabs.meta │ │ └── Prefabs │ │ │ ├── Axes_X.prefab │ │ │ ├── Axes_X.prefab.meta │ │ │ ├── Axes_Y.prefab │ │ │ ├── Axes_Y.prefab.meta │ │ │ ├── Axes_Z.prefab │ │ │ ├── Axes_Z.prefab.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── unnamed.mat │ │ │ └── unnamed.mat.meta │ │ │ ├── human_male.fbx │ │ │ └── human_male.fbx.meta │ ├── HLARHeadExample.cs │ ├── HLARHeadExample.cs.meta │ ├── HLARHeadExample.unity │ ├── HLARHeadExample.unity.meta │ ├── NoiseFilter.meta │ └── NoiseFilter │ │ ├── OFPointsFilter.cs │ │ ├── OFPointsFilter.cs.meta │ │ ├── PointsFilterBase.cs │ │ └── PointsFilterBase.cs.meta │ ├── HLFaceLandmarkDetectionExample.meta │ ├── HLFaceLandmarkDetectionExample │ ├── HLFaceLandmarkDetectionExample.cs │ ├── HLFaceLandmarkDetectionExample.cs.meta │ ├── HLFaceLandmarkDetectionExample.unity │ └── HLFaceLandmarkDetectionExample.unity.meta │ ├── HLPhotoCaptureExample.meta │ ├── HLPhotoCaptureExample │ ├── HLPhotoCaptureExample.cs │ ├── HLPhotoCaptureExample.cs.meta │ ├── HLPhotoCaptureExample.unity │ └── HLPhotoCaptureExample.unity.meta │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.cs │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.cs.meta │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.unity │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.unity.meta │ ├── Materials.meta │ ├── Materials │ ├── HolographicImageBlend.mat │ ├── HolographicImageBlend.mat.meta │ ├── HolographicImageBlendGrayscale.mat │ ├── HolographicImageBlendGrayscale.mat.meta │ ├── TextureSinglePass.mat │ ├── TextureSinglePass.mat.meta │ ├── TextureSinglePassGrayscale.mat │ └── TextureSinglePassGrayscale.mat.meta │ ├── RectangleTracker.meta │ ├── RectangleTracker │ ├── Scripts.meta │ └── Scripts │ │ ├── RectangleTracker.cs │ │ ├── RectangleTracker.cs.meta │ │ ├── TrackedObject.cs │ │ ├── TrackedObject.cs.meta │ │ ├── TrackedRect.cs │ │ ├── TrackedRect.cs.meta │ │ ├── TrackerParameters.cs │ │ └── TrackerParameters.cs.meta │ ├── Scripts.meta │ ├── Scripts │ ├── ARGameObject.cs │ ├── ARGameObject.cs.meta │ ├── Utils.meta │ └── Utils │ │ ├── DebugUtils.cs │ │ ├── DebugUtils.cs.meta │ │ ├── HLCameraStream2MatHelper.cs │ │ └── HLCameraStream2MatHelper.cs.meta │ ├── ShowLicense.cs │ ├── ShowLicense.cs.meta │ ├── ShowLicense.unity │ └── ShowLicense.unity.meta ├── HLWithDlibExampleMRTK3 └── Assets │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.meta │ └── HoloLensWithDlibFaceLandmarkDetectorExample │ ├── HLARHeadExample.meta │ ├── HLARHeadExample │ ├── AR.meta │ ├── AR │ │ ├── EyeLaser.meta │ │ ├── EyeLaser │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── eff_glitter_2.mat │ │ │ │ ├── eff_glitter_2.mat.meta │ │ │ │ ├── eff_par_1.mat │ │ │ │ ├── eff_par_1.mat.meta │ │ │ │ ├── eff_smoke_2.mat │ │ │ │ └── eff_smoke_2.mat.meta │ │ │ ├── Prefab.meta │ │ │ ├── Prefab │ │ │ │ ├── Eff_Laser_2.prefab │ │ │ │ └── Eff_Laser_2.prefab.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Eff_Glitter2.png │ │ │ │ ├── Eff_Glitter2.png.meta │ │ │ │ ├── Eff_smoke_1.png │ │ │ │ ├── Eff_smoke_1.png.meta │ │ │ │ ├── eff_par_1.tga │ │ │ │ └── eff_par_1.tga.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── axes_x_material.mat │ │ │ ├── axes_x_material.mat.meta │ │ │ ├── axes_y_material.mat │ │ │ ├── axes_y_material.mat.meta │ │ │ ├── axes_z_material.mat │ │ │ ├── axes_z_material.mat.meta │ │ │ ├── head_material.mat │ │ │ └── head_material.mat.meta │ │ ├── MouthLaser.meta │ │ ├── MouthLaser │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── eff_heart_1.mat │ │ │ │ └── eff_heart_1.mat.meta │ │ │ ├── Prefab.meta │ │ │ ├── Prefab │ │ │ │ ├── Eff_Laser_5.prefab │ │ │ │ └── Eff_Laser_5.prefab.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Eff_Heart_1.png │ │ │ │ └── Eff_Heart_1.png.meta │ │ ├── Prefabs.meta │ │ └── Prefabs │ │ │ ├── Axes_X.prefab │ │ │ ├── Axes_X.prefab.meta │ │ │ ├── Axes_Y.prefab │ │ │ ├── Axes_Y.prefab.meta │ │ │ ├── Axes_Z.prefab │ │ │ ├── Axes_Z.prefab.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── unnamed.mat │ │ │ └── unnamed.mat.meta │ │ │ ├── human_male.fbx │ │ │ └── human_male.fbx.meta │ ├── HLARHeadExample.cs │ ├── HLARHeadExample.cs.meta │ ├── HLARHeadExample.unity │ ├── HLARHeadExample.unity.meta │ ├── NoiseFilter.meta │ └── NoiseFilter │ │ ├── OFPointsFilter.cs │ │ ├── OFPointsFilter.cs.meta │ │ ├── PointsFilterBase.cs │ │ └── PointsFilterBase.cs.meta │ ├── HLFaceLandmarkDetectionExample.meta │ ├── HLFaceLandmarkDetectionExample │ ├── HLFaceLandmarkDetectionExample.cs │ ├── HLFaceLandmarkDetectionExample.cs.meta │ ├── HLFaceLandmarkDetectionExample.unity │ └── HLFaceLandmarkDetectionExample.unity.meta │ ├── HLPhotoCaptureExample.meta │ ├── HLPhotoCaptureExample │ ├── HLPhotoCaptureExample.cs │ ├── HLPhotoCaptureExample.cs.meta │ ├── HLPhotoCaptureExample.unity │ └── HLPhotoCaptureExample.unity.meta │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.cs │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.cs.meta │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.unity │ ├── HoloLensWithDlibFaceLandmarkDetectorExample.unity.meta │ ├── Materials.meta │ ├── Materials │ ├── HolographicImageBlend.mat │ ├── HolographicImageBlend.mat.meta │ ├── HolographicImageBlendGrayscale.mat │ ├── HolographicImageBlendGrayscale.mat.meta │ ├── TextureSinglePass.mat │ ├── TextureSinglePass.mat.meta │ ├── TextureSinglePassGrayscale.mat │ └── TextureSinglePassGrayscale.mat.meta │ ├── RectangleTracker.meta │ ├── RectangleTracker │ ├── Scripts.meta │ └── Scripts │ │ ├── RectangleTracker.cs │ │ ├── RectangleTracker.cs.meta │ │ ├── TrackedObject.cs │ │ ├── TrackedObject.cs.meta │ │ ├── TrackedRect.cs │ │ ├── TrackedRect.cs.meta │ │ ├── TrackerParameters.cs │ │ └── TrackerParameters.cs.meta │ ├── Scripts.meta │ ├── Scripts │ ├── ARGameObject.cs │ ├── ARGameObject.cs.meta │ ├── Utils.meta │ └── Utils │ │ ├── DebugUtils.cs │ │ ├── DebugUtils.cs.meta │ │ ├── HLCameraStream2MatHelper.cs │ │ └── HLCameraStream2MatHelper.cs.meta │ ├── ShowLicense.cs │ ├── ShowLicense.cs.meta │ ├── ShowLicense.unity │ └── ShowLicense.unity.meta ├── LICENSE ├── PlayerSettings.jpg ├── ProjectAssets.jpg ├── README.md ├── screenshot01.jpg ├── screenshot02.jpg └── screenshot03.jpg /BuildSettings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/BuildSettings.jpg -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_glitter_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_glitter_2.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_glitter_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_glitter_2.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_par_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_par_1.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_par_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_par_1.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_smoke_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_smoke_2.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_smoke_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_smoke_2.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab/Eff_Laser_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab/Eff_Laser_2.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab/Eff_Laser_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab/Eff_Laser_2.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_Glitter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_Glitter2.png -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_Glitter2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_Glitter2.png.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_smoke_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_smoke_1.png -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_smoke_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_smoke_1.png.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/eff_par_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/eff_par_1.tga -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/eff_par_1.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/eff_par_1.tga.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_x_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_x_material.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_x_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_x_material.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_y_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_y_material.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_y_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_y_material.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_z_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_z_material.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_z_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_z_material.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/head_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/head_material.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/head_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/head_material.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials/eff_heart_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials/eff_heart_1.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials/eff_heart_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials/eff_heart_1.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab/Eff_Laser_5.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab/Eff_Laser_5.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab/Eff_Laser_5.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab/Eff_Laser_5.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures/Eff_Heart_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures/Eff_Heart_1.png -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures/Eff_Heart_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures/Eff_Heart_1.png.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_X.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_X.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_X.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_X.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Y.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Y.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Y.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Y.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Z.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Z.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Z.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Z.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials/unnamed.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials/unnamed.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials/unnamed.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials/unnamed.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/human_male.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/human_male.fbx -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/human_male.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/human_male.fbx.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/OFPointsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/OFPointsFilter.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/OFPointsFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/OFPointsFilter.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/PointsFilterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/PointsFilterBase.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/PointsFilterBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/PointsFilterBase.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlend.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlend.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlend.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlend.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlendGrayscale.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlendGrayscale.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlendGrayscale.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlendGrayscale.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePass.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePass.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePass.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePass.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePassGrayscale.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePassGrayscale.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePassGrayscale.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePassGrayscale.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/RectangleTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/RectangleTracker.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/RectangleTracker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/RectangleTracker.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedObject.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedObject.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedRect.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedRect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedRect.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackerParameters.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackerParameters.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackerParameters.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/ARGameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/ARGameObject.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/ARGameObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/ARGameObject.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/DebugUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/DebugUtils.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/DebugUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/DebugUtils.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/HLCameraStream2MatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/HLCameraStream2MatHelper.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/HLCameraStream2MatHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/HLCameraStream2MatHelper.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK2/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_glitter_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_glitter_2.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_glitter_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_glitter_2.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_par_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_par_1.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_par_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_par_1.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_smoke_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_smoke_2.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_smoke_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Materials/eff_smoke_2.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab/Eff_Laser_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab/Eff_Laser_2.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab/Eff_Laser_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Prefab/Eff_Laser_2.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_Glitter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_Glitter2.png -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_Glitter2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_Glitter2.png.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_smoke_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_smoke_1.png -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_smoke_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/Eff_smoke_1.png.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/eff_par_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/eff_par_1.tga -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/eff_par_1.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/EyeLaser/Textures/eff_par_1.tga.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_x_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_x_material.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_x_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_x_material.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_y_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_y_material.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_y_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_y_material.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_z_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_z_material.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_z_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/axes_z_material.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/head_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/head_material.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/head_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Materials/head_material.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials/eff_heart_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials/eff_heart_1.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials/eff_heart_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Materials/eff_heart_1.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab/Eff_Laser_5.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab/Eff_Laser_5.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab/Eff_Laser_5.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Prefab/Eff_Laser_5.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures/Eff_Heart_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures/Eff_Heart_1.png -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures/Eff_Heart_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/MouthLaser/Textures/Eff_Heart_1.png.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_X.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_X.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_X.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_X.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Y.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Y.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Y.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Y.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Z.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Z.prefab -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Z.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Axes_Z.prefab.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials/unnamed.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials/unnamed.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials/unnamed.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/Materials/unnamed.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/human_male.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/human_male.fbx -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/human_male.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/AR/Prefabs/human_male.fbx.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/HLARHeadExample.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/OFPointsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/OFPointsFilter.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/OFPointsFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/OFPointsFilter.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/PointsFilterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/PointsFilterBase.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/PointsFilterBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLARHeadExample/NoiseFilter/PointsFilterBase.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLFaceLandmarkDetectionExample/HLFaceLandmarkDetectionExample.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HLPhotoCaptureExample/HLPhotoCaptureExample.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/HoloLensWithDlibFaceLandmarkDetectorExample.unity.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlend.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlend.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlend.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlend.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlendGrayscale.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlendGrayscale.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlendGrayscale.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/HolographicImageBlendGrayscale.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePass.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePass.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePass.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePass.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePassGrayscale.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePassGrayscale.mat -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePassGrayscale.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Materials/TextureSinglePassGrayscale.mat.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/RectangleTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/RectangleTracker.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/RectangleTracker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/RectangleTracker.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedObject.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedObject.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedRect.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedRect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackedRect.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackerParameters.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackerParameters.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/RectangleTracker/Scripts/TrackerParameters.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/ARGameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/ARGameObject.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/ARGameObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/ARGameObject.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/DebugUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/DebugUtils.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/DebugUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/DebugUtils.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/HLCameraStream2MatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/HLCameraStream2MatHelper.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/HLCameraStream2MatHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/Scripts/Utils/HLCameraStream2MatHelper.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.cs -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.cs.meta -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.unity -------------------------------------------------------------------------------- /HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/HLWithDlibExampleMRTK3/Assets/HoloLensWithDlibFaceLandmarkDetectorExample/ShowLicense.unity.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/LICENSE -------------------------------------------------------------------------------- /PlayerSettings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/PlayerSettings.jpg -------------------------------------------------------------------------------- /ProjectAssets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/ProjectAssets.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/README.md -------------------------------------------------------------------------------- /screenshot01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/screenshot01.jpg -------------------------------------------------------------------------------- /screenshot02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/screenshot02.jpg -------------------------------------------------------------------------------- /screenshot03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/HoloLensWithDlibFaceLandmarkDetectorExample/HEAD/screenshot03.jpg --------------------------------------------------------------------------------