hololens 2
4 TopicsExperience Microsoft HoloLens 2 and Dynamics 365 Guides Revolutionizes your works.
Free event, reserve your seat quickly!!! Learn how Dynamics 365 Guides revolutionize frontline workers' communication, training, & knowledge transfer with MR Apps on HoloLens 2. Date:Tuesday, September 19th Time:10 - 11am PDT Reserve your spot(limited seats):https://www.eventbrite.com/e/experience-microsofts-dynamics-365-guides-tickets-696644631847 Hosted by Mixed Reality Specialists from SphereGenand HoloLens 2 SphereGen Technologies, a certified Mixed Reality Partner withMicrosoft HoloLens 2, is hosting this live demo event. Having worked with the HoloLens since its introduction in 2016, we have successfully implementedDynamics 365 Guidesfor many clients – with groundbreaking results. Microsoft, the innovator behind HoloLens 2 technology, will be co-hosting this event with featured speakers. This webinar will include a live demonstration of Dynamics 365 Guides using Microsoft Teams and the HoloLens 2. What will you learn about Dynamics 365 Guides? Experience a live demonstration of a trainee using Guides to learn how to repair a piece of equipment. See how Guides overlays virtual annotations directly onto the instrument to provide clear and accurate instructions. Follow along as the trainee is guided through operating the device with step-by-step instructions. See how a technician communicates with a Specialist or Subject Matter Expert (SME) while remaining hands-free to focus on the subject at hand. Understand how Guides is being adopted across multiple industries as a collaborative tool that provides immediate remote guidance in-field support and training - no travel time or expense required. Remote Assist is now a part of Guides. Learn aboutNEWMicrosoft features, such asGuides for MobileandGenerative AI in Copilot. Guides for Mobile: Step-by-step instructions, images, and animations on the field technicians' mobile devices for faster and more accurate task completion. Generative AI in Copilot: AI assistant that automates tasks and creates content across business productivity and collaboration apps. Learn more about Microsoft Dynamics 365 Guides use cases: https://www.spheregen.com/guides/ Engage in a Q&A session with our SME’s who have implemented this solution for several clients. Who should attend this event? Innovation Leaders/CIOs Directors of Training Managers of Field Support Production Management Don’t miss your chance to experience Dynamics 365 Guides in action! This event has a limited numbersof free tickets available for an engaging and dynamic experience.679Views0likes0CommentsAccelerating sales cycle for faster deal closure with mixed reality
To stand apart from their competition, the Tinsley Equipment team wanted to provide their customers with a real-time quote for the equipment under consideration.Moving on from traditional simulation techniques, Softweb Solutions' AR product visualization solution enhances the sales experience by offering an immersive 360-degree perspective of the subject or the equipment.7.6KViews1like0CommentsUnity3d & MRTK open Hololens 2 camera on button click and display the image in the Untiy scene after
As described in the title I have a scene wich contains a button. I attached a script with the code you see below to a ```PhotoManager``` GameObject. The button runs ```TakePhoto()``` from the script below when the button gets pressed. I expected that when you click the button, the HoloLens will open the camera and you can take a picture. Once the picture has been taken, the user should see it in the scene. However, nothing happens when you click the button... When i run the scene in unity and press the button in the game window i'm getting this error: ```InvalidOperationException: Sequence contains no elements```. (I dont have a webcam connected to my computer) The code is form the Unity documentation. using UnityEngine; using System.Collections; using System.Linq; using UnityEngine.Windows.WebCam; public class PhotoCaptureExample : MonoBehaviour { PhotoCapture photoCaptureObject = null; Texture2D targetTexture = null; // Use this for initialization public void TakePhoto() { Resolution cameraResolution = PhotoCapture.SupportedResolutions.OrderByDescending((res) => res.width * res.height).First(); targetTexture = new Texture2D(cameraResolution.width, cameraResolution.height); // Create a PhotoCapture object PhotoCapture.CreateAsync(false, delegate (PhotoCapture captureObject) { photoCaptureObject = captureObject; CameraParameters cameraParameters = new CameraParameters(); cameraParameters.hologramOpacity = 0.0f; cameraParameters.cameraResolutionWidth = cameraResolution.width; cameraParameters.cameraResolutionHeight = cameraResolution.height; cameraParameters.pixelFormat = CapturePixelFormat.BGRA32; // Activate the camera photoCaptureObject.StartPhotoModeAsync(cameraParameters, delegate (PhotoCapture.PhotoCaptureResult result) { // Take a picture photoCaptureObject.TakePhotoAsync(OnCapturedPhotoToMemory); }); }); } void OnCapturedPhotoToMemory(PhotoCapture.PhotoCaptureResult result, PhotoCaptureFrame photoCaptureFrame) { // Copy the raw image data into the target texture photoCaptureFrame.UploadImageDataToTexture(targetTexture); // Create a GameObject to which the texture can be applied GameObject quad = GameObject.CreatePrimitive(PrimitiveType.Quad); Renderer quadRenderer = quad.GetComponent<Renderer>() as Renderer; quadRenderer.material = new Material(Shader.Find("Custom/Unlit/UnlitTexture")); quad.transform.parent = this.transform; quad.transform.localPosition = new Vector3(0.0f, 0.0f, 3.0f); quadRenderer.material.SetTexture("_MainTex", targetTexture); // Deactivate the camera photoCaptureObject.StopPhotoModeAsync(OnStoppedPhotoMode); } void OnStoppedPhotoMode(PhotoCapture.PhotoCaptureResult result) { // Shutdown the photo capture resource photoCaptureObject.Dispose(); photoCaptureObject = null; } }1.9KViews0likes0CommentsAutopilot Reset option greyed out for Autopilot enrolled HoloLens
Recently, I created Autopilot profile for HoloLens device and was able to enroll the device through autopilot process also but when I saw device entry in Intune then I could see options like Fresh start, Autopilot reset were greyed out. We are running latest version of windows holographic on device and by default deployment profile for HoloLens runs in Self deploying mode. Has anyone faced this scenario ? Or does Autopilot reset option kept intentionally greyed out by design for HoloLens ? Regards, Suraj Malusare16KViews0likes2Comments