What Are Spatial Anchors and Why They Matter

Breaking Down Spatial Anchors in AR/MR

Augmented Reality (AR) and Mixed Reality (MR) depend on accurate understanding of the physical environment to create realistic experiences, and they hit this target with the concept of spatial anchors. These anchors act like markers, either geometric or based on features, that help virtual objects stay in the same spot in the real world — even when users move around.

Sounds simple, but the way spatial anchors are implemented varies a lot depending on the platform; for example, Apple’s ARKit, Google’s ARCore, and Microsoft’s Azure Spatial Anchors (ASA) all approach them differently.

If you want to know how these anchors are used in practical scenarios or what challenges developers often face when working with them, this article dives into these insights too.

What Are Spatial Anchors and Why They Matter

A spatial anchor is like a marker in the real world, tied to a specific point or group of features. Once you create one, it allows for some important capabilities:

  1. Persistence. Virtual objects stay exactly where you placed them in the real-world, even if you close and restart the app.
  2. Multi-user synchronization. Multiple devices can share the same anchor, so everyone sees virtual objects aligned to the same physical space.
  3. Cross-session continuity. You can leave a space and come back later, and all the virtual elements will still be in the right place.

In AR/MR, your device builds a point cloud or feature map by using the camera and built-in sensors like the IMU (inertial measurement unit). Spatial anchors are then tied to those features, and without them, virtual objects can drift or float around as you move, shattering the sense of immersion.

Technical Mechanics of Spatial Anchors

At a high level, creating and using spatial anchors involves a series of steps:

Feature Detection & Mapping

To start, the device needs to understand its surroundings: it scans the environment to identify stable visual features (e.g., corners, edges). Over time, these features are triangulated, forming a sparse map or mesh of the space. This feature map is what the system relies on to anchor virtual objects.

Anchor Creation

Next, anchors are placed at specific 3D locations in the environment in two possible ways:

  • Hit-testing. The system casts a virtual ray from a camera to a user-tapped point, then drops an anchor on the detected surface.
  • Manual placement. Sometimes, developers need precise control, so they manually specify the exact location of an anchor using known coordinates, like ensuring it perfectly fits on the floor or another predefined plane.

Persistence & Serialization

Anchors aren’t temporary — they can persist, and here’s how systems make that possible:

  • Locally stored anchors. Frameworks save the anchor’s data, like feature descriptors and transforms, in a package called a “world map” or “anchor payload”.
  • Cloud-based anchors. Cloud services like Azure Spatial Anchors (ASA) upload this anchor data to a remote server to let the same anchor be accessed across multiple devices.

Synchronization & Restoration

When you’re reopening the app or accessing the anchor on a different device, the system uses the saved data to restore the anchor’s location. It compares stored feature descriptors to what the camera sees in real time, and if there’s a good enough match, the system confidently snaps the anchor into position, and your virtual content shows up right where it’s supposed to.

However, using spatial anchors isn’t perfect, like using any other technology, and there are some tricky issues to figure out:

  • Low latency. Matching saved data to real-time visuals has to be quick; otherwise, the user experience feels clunky.
  • Robustness in feature-scarce environments. Blank walls or textureless areas don’t give the system much to work with and make tracking tougher.
  • Scale drift. Little errors in the system’s tracking add up over time to big discrepancies.

When everything falls into place and the challenges are handled well, spatial anchors make augmented and virtual reality experiences feel seamless and truly real.

ARKit’s Spatial Anchors (Apple)

Apple’s ARKit, rolled out with iOS 11, brought powerful features to developers working on AR apps, and one of them is spatial anchoring, which allows virtual objects to stay fixed in the real world as if they belong there. To do this, ARKit provides two main APIs that developers rely on to achieve anchor-based persistence.

ARAnchor & ARPlaneAnchor

The simplest kind of anchor in ARKit is the ARAnchor, which represents a single 3D point in the real-world environment and acts as a kind of “pin” in space that ARKit can track. Building on this, ARPlaneAnchor identifies flat surfaces like tables, floors, and walls, allowing developers to tie virtual objects to these surfaces.

ARWorldMap

ARWorldMap makes ARKit robust for persistence and acts as a snapshot of the environment being tracked by ARKit. It captures the current session, including all detected anchors and their surrounding feature points, into a compact file.

There are a few constraints developers need to keep in mind:

  • World maps are iOS-only, which means they cannot be shared directly with Android.
  • There must be enough overlapping features between the saved environment and the current physical space, and textured structures are especially valuable for this, as they help ARKit identify key points for alignment.
  • Large world maps, especially those with many anchors or detailed environments, can be slow to serialize and deserialize, causing higher application latency when loading or saving.

ARKit anchors are ideal for single-user persistence, but sharing AR experiences across multiple devices poses additional issues, and developers often employ custom server logic (uploading ARWorldMap data to a backend), enabling users to download and use the same map.

However, this approach comes with caveats: it requires extra development work and doesn’t offer native support for sharing across platforms like iOS and Android.

ARCore’s Spatial Anchors (Google)

Google’s ARCore is a solid toolkit for building AR apps, and one of its best features is how it handles spatial anchors:

Anchors & Hit-Testing

ARCore offers two ways to create anchors. You can use Session.createAnchor(Pose) if you already know the anchor’s position, or you can use HitResult.createAnchor() if you want to define the anchor’s location based on the surface detected by the system. Once created, the position of an anchor is represented as a 3×4 transform matrix, giving you control over its placement.

Cloud Anchors (Alpha → Beta → Stable)

The Cloud Anchor API allows you to save your anchors to Google’s servers and share them across devices — including iOS clients using ARCore’s SDK for iOS.

There are a few catches to be aware of:

  • Free-tier hosted anchors live for 24 hours. If you need them to last longer, you’ll need the Cloud Anchor API for business, which extends retention up to 365 days with quotas.
  • Hosting an anchor works best when the environment has lots of unique features (like textured surfaces) and good lighting, so avoid plain or dimly lit spaces, as they make data capture harder, messing up the accuracy.
  • If you’re hosting a lot of anchors in a small area, ARCore will take longer to resolve them because the system has more data to sift through.

ARCore’s Cloud Anchors enable cross-platform (Android ↔ iOS) multi-user experiences, giving an edge over ARKit, which is iOS-only. However, you’ll need to plan for API quotas and deal with the default retention limits if you’re not on the business tier.

Azure Spatial Anchors (Microsoft)

Microsoft’s Azure Spatial Anchors (ASA) is a cloud service designed to work across HoloLens, iOS, and Android, so you can create AR experiences without stressing over platform-specific details.

Cross-Platform SDK

ASA gives you a single SDK that’s compatible with Unity, Unreal, and native platforms (UWP, iOS, Android).

Anchor Persistence & Retrieval

When you create an anchor, ASA captures a 3D point cloud of its surroundings and securely uploads this data to Azure’s globally distributed backbone. What do you get? A unique 32-character unique Anchor ID that acts like a permanent address for your anchor in the cloud. And these anchors don’t have an expiration date, you decide when they’re no longer needed — they persist until you explicitly delete them.

Spatial Anchors CRUD

There are a few areas where Azure Spatial Anchors are great:

  • Cross-platform consistency. ASA enables anchors to function across different ecosystems, including iOS, Android, HoloLens, and Magic Leap apps.
  • Long-term persistence. Anchors don’t just disappear on you like they do with some other solutions. The default Azure account comes with a quota for 1,000 anchors, which should cover most projects. If not, you can scale up as needed.
  • Scale & security. Since ASA is built into Azure’s ecosystem, enterprises can manage anchor data alongside other cloud resources, integrate with Azure Active Directory, and enforce role-based access.
  • Environment requirements. One heads-up, though. ASA works best in textured environments. Large open spaces with few features (e.g., empty rooms) often fail to produce reliable anchors. But honestly, that’s the case with most AR tools now.

Azure Spatial Anchors is great for anyone building AR apps: it saves developers from dealing with all the platform-specific issues due to cross-platform support and long-term anchor persistence. Just make sure your environment has enough texture for the best results.

Real-World Use Cases

AR is being used in seriously impactful ways, and it’s wild to see some of the ways it’s being put to work. Check these out:

Multiplayer AR Games

The multiplayer app “Just a Line” by Google uses ARCore Cloud Anchors to allow users to draw in the air and see each other’s drawings as if they share the same canvas.

Meanwhile, Moth + Flame (Scavenger AR) uses ASA to let multiple players discover virtual items anchored to real-world locations.Players use their phones to find and collect these items, precisely placed using GPS.

Remote Assistance & Collaboration

AR isn’t just for fun — it also solves serious problems. For example, ThyssenKrupp Elevator Service integrates HoloLens and ASA so remote experts can mark up a machine with virtual notes and arrows, which the technician on-site sees through their AR headset. The instructions stay locked to the specific parts of the equipment, making troubleshooting faster and cutting maintenance time by around 30%.

Industrial AR Navigation

Honeywell’s Connected Plant has workers using AR glasses that project virtual arrows onto the warehouse floor, guiding them along optimized paths to pick orders faster. And this saves tons of time on order picking — around 25% faster, actually. What’s even better, anchors ensure virtual arrows stay accurate shift after shift, so the system is always reliable.

Retail & Showroom Experiences

And, of course, we can’t skip how AR brings retail experiences closer to home: IKEA Place iOS app is a standout here. Using ARKit’s local anchors, customers can place virtual furniture in their rooms to see how it’ll look and fit (via hit-testing on detected planes) and save their room setups thanks to exporting and importing ARWorldMap data.

Limitations & Common Pitfalls

Even as the tools for spatial anchors improve, they have challenges as well.

Feature Scarcity in Environments

Some places just don’t provide enough visual details for anchors to work well — for example, empty white walls, uniform floors, or large glass areas with little texture. Anchors may fail to be created or matched reliably.

Dynamic environments add to the challenge: moving objects (people, equipment) can occlude reference features, leading to tracking issues.

Lighting Variations

Lighting matters more than you think: abrupt changes, like turning the lights off or moving to a darker area, can mess with how anchors are tracked, they may “jump” or even temporarily disappear as the system struggles to adjust.

Scale & Drift

Small tracking errors can pile up over time. The “drift” means virtual objects don’t stay exactly where they should. In this case, anchors recalibrate positioning, but virtual content can slowly diverge from intended positions without regular anchor updates.

Cross-Platform Discrepancies

Devices differently handle some basics. For example, iOS uses one type of coordinate system and Android another. While ASA translates between the two, developers still need to be careful when working with raw data.

Accuracy also varies: ARKit anchors may be more precise in small, highly textured rooms, whereas cloud anchors (ARCore/ASA) may take longer to resolve in feature-poor spaces.

Networking & Quotas

Cloud anchors rely on a good internet connection, and hosting or resolving anchors fails without it.

Free options like ARCore’s also come with limits: for instance, the free tier only keeps cloud anchors alive for 24 hours. If you’re working on large-scale projects and blow past your quota, everything will slow down or stop altogether unless you’ve set up a proper Azure SKU.

Best Practices & Recommendations

These tips will help make your spatial anchors work like a charm.

Environment Scanning

Instruct users to move slowly and sweep the device camera across all surfaces. The more details the system sees, like furniture, paintings, or posters, the better the anchors will perform. If there are plain walls or empty spaces, add some textures to your scanning route, and you’ll thank yourself later.

Anchor Density & Management

Don’t create anchors in one spot, create a mesh hierarchy instead. Start with a main anchor, then add secondary anchors for fine detail. If you’re not using anchors anymore, get rid of them to stay within service quotas (ASA) and reduce locate times.

Error Handling & Recovery

If an anchor suddenly stops tracking or becomes “limited”, show users a clear message, like “Re-scanning environment to find anchor…” to guide them. Re-scan the area regularly if you notice objects drifting out of place (for example, by more than 0.2 meters). If things still feel off, you should create a fresh anchor.

Cross-Platform Testing

Always test your setup on the devices you plan to use in real-world settings, like offices with fluorescent lights or spaces with natural daylight and some clutter.

Check how long it takes for an anchor to start working after launching. If it takes longer than five seconds to stabilize, it’s time to tweak it for better user experience.

Conclusion

Spatial anchors keep AR and MR experiences grounded, synchronized, and useful, they’re essential for persistence and multi-user synchronization. Each platform brings unique strengths:

  • ARKit (iOS-only) does fast local mapping with ARWorldMap, great for single-user setups.
  • ARCore (Android/iOS) lets you share across platforms with Cloud Anchors, though the free version only keeps them active briefly.
  • Azure Spatial Anchors offers long-term, reliable syncing and cross-platform support, ideal for big, professional setups.

To get the most out of spatial anchors, you need to understand how they work. Know how they map spaces, where they’re strong, and where they’ll give you trouble. You’ll get better results by scanning environments thoughtfully, not overloading an area with anchors, and testing under real-world conditions on all your devices.

Latest Articles

The State of 3D Medical Image Visualization in 2026
June 29, 2026
The State of 3D Medical Image Visualization in 2026

Today’s imaging systems are more powerful than ever. A single CT scan generates hundreds of cross-sections. An MRI cardiac study captures the heart in four dimensions. A full-body PET produces a dense volumetric map of metabolic activity across every organ system. And yet, in most hospitals today, clinicians consume all of that data the same way they did in the 1990s: as 2D slices, scrolled one frame at a time, with the third dimension reconstructed entirely in the radiologist’s head. That gap between the data that exists and the data that gets used is what 3D medical visualization is closing. Progress hasn’t been uniform. The specialties with the highest spatial stakes have moved fastest. In oncology, where tumour margins and vascular relationships determine whether a resection is safe, 3D visualization is now routine. In cardiology, where structural defects live in three dimensions that 2D echo can only approximate, volumetric review has become standard practice for complex case planning. For these teams, rotating a segmented model or flying through a volume-rendered vessel is part of the reading workflow. Within healthcare, oncology drives roughly 34% of total 3D imaging spend: 52% of cancer centers already use 3D imaging as part of their standard workflow, and 44% of cardiology departments do the same. For much of medicine, the shift is still underway. But the direction is clear. The market reflects it. The global 3D medical imaging market was valued at $21.43B in 2025 and $23.39B in 2026 and is projected to reach $42.75B by 2032  at a compound annual growth rate of 10.36%. Healthcare has become the largest adopter of 3D imaging technology overall. In this article, we break down what 3D medical visualization actually means technically and where it creates measurable clinical value. The imaging data problem Begin with the scanners, because they don’t produce data the same way: CT measures X-ray absorption, so dense tissue like bone reads strongly while soft tissue stays faint: the default for trauma, lung, and skeletal work. MRI reads tissue magnetic properties instead of density, trading speed and bone detail for soft-tissue contrast nothing else matches. PET maps metabolic activity rather than structure, and almost always travels fused to a CT or MRI so the active regions have anatomy to sit against. Ultrasound produces a live volume but depends heavily on probe angle and operator skill. Cone-beam CT gives a tight, high-resolution field at the cost of coverage, which is why it dominates dental and interventional suites. All of these imaging methods capture a 3D volume of the body. Yet in most cases, doctors still review that data as a series of 2D slices. At first glance, this seems surprising: why collect rich 3D data only to view it in 2D? Part of the answer is habit and established workflows, but there are also practical reasons why 2D slices remain the standard in medical imaging. Raw data, nothing interpreted. A slice shows the scan as acquired. Every 3D rendering is the product of decisions which densities to display, which to hide, where to set the threshold and any of those can suppress a real finding or manufacture one that isn’t there. Full coverage of the dataset. Scrolling slices walks the eye across every voxel in the study. A 3D view by definition hides whatever sits behind the surface it shows, and for catching a small lesion or a faint ground-glass opacity, seeing everything matters. 3D earns its place once the task moves past detection: Spatial relationships. 3D visualization makes it easier to understand how anatomical structures relate to one another. Instead of mentally reconstructing anatomy from dozens of 2D slices, clinicians can view organs, vessels, and abnormalities as a single 3D model. Change over time. Tracking changes across multiple scans becomes much easier in 3D. By measuring the volume of a structure over time, clinicians can quickly identify trends that may be difficult to spot in individual slices. Communication. A 3D model is something a patient, a referring physician, or a multidisciplinary team can read at a glance, where a slice stack means little to anyone outside radiology. So, 3D visualization is most valuable when understanding spatial relationships is difficult or time-consuming in 2D. What complicates this in practice is the format the data arrives in. Most medical imaging is still stored as DICOM, a standard built around 2D-image workflows. DICOM is the backbone of medical imaging, but several of its legacy choices make 3D visualization and analysis harder to build on top of it. Gathering everything a full analysis needs is one problem: a careful read of a pathology usually draws on prior scans and the patient’s imaging history, and that data sits scattered across separate studies and series rather than in one place. Interoperability is another. DICOM has to exchange data with the hospital’s other systems, such as PACS, RIS, and the electronic health record, and every connection point adds friction. The input itself is uneven too: scans vary in quality and completeness depending on how and where they were acquired, so a tool built for real cases has to hold up across that range. We’ve written separately about why DICOM is stuck in the ’90s. What “3D medical visualization” actually means There are five techniques in common use. Most clinical software uses two or three of them together. Segmentation comes first, because the others depend on it. Segmentation. Something has to label what is in the scan before the rest can work. It needs to know which voxels are liver, which are tumour, which are vessel wall. This used to be manual work. A radiologist drew outlines on each slice, which for a complex case could take close to an hour. Two radiologists rarely produced identical outlines. AI tools changed this. TotalSegmentator and similar models label most organs in a CT scan in under a minute. The clinician checks and corrects the result instead of drawing it. This is what makes the other four techniques practical for routine use. Multiplanar reformatting (MPR)….

Immersive Storytelling: How XR Turns Audiences from Viewers into Participants
June 8, 2026
Immersive Storytelling: How XR Turns Audiences from Viewers into Participants

Immersive storytelling has moved from experimental format to a working tool used by humanitarian agencies, museums, newsrooms, and brands. The UN commissions 360° productions to communicate field realities. Agog is funding up to $1 million in 2026 grants for immersive climate work. Museums build location-based AR around their collections. Brands replace banner-grade content with VR experiences their audiences actually remember. What unites these use cases is a shift in what audiences expect from a story. Watching is no longer enough. People want to step into the scene, choose where to look, and feel that their presence shapes what happens next. The market reflects this shift. Fortune Business Insights projects the immersive marketing segment alone to grow from $11.66 billion in 2026 to $89.45 billion by 2034, at a CAGR of around 29%. In this article, we look at what immersive storytelling actually means in 2026, the formats producing the strongest results today, why presence works the way it does on a cognitive level, and where the medium is creating the most measurable impact across sectors. What is immersive storytelling? Immersive storytelling is a narrative method built on VR, AR, MR, 360° video, spatial audio, and interactivity. What makes it a distinct medium is the sense of being inside a story rather than watching it from outside. This changes the relationship between content and viewer in three concrete ways. Linear video becomes a 360° scene. Traditional film frames the shot for the audience: the director decides what is in view and what is cut out. In a 360° production, that frame disappears. The viewer chooses where to look, and different details emerge depending on where their attention goes. The same scene can carry multiple parallel observations, and two people watching the same piece may come away with different impressions of what mattered. Text and photography become interactive environments. A written article describes a place; a photo captures a moment of it. Both keep the audience on the outside. Interactive VR and AR let the audience step into the environment, examine objects up close, and in many cases trigger responses through their own actions. Passive consumption becomes an embodied experience. Watching content engages mostly the eyes and ears. Immersive formats add spatial awareness, proprioception, and a sense of physical location. The brain registers the experience closer to how it registers being somewhere in the real world, which is why retention and emotional response measure differently in immersive media than in flat content. How far the experience goes in any of these directions depends on the creative approach. Why it works: The science of presence and empathy When immersive storytelling produces results, it does so through specific mechanisms. The effect it has on audiences has been documented in peer-reviewed research and confirmed by neuroscience. A peer-reviewed study on immersive storytelling and presence found that delivering a story via 360° video on a head-mounted display produces stronger self-location and copresence than the desktop or text version of the same piece. Self-location is the feeling of being physically inside the scene; copresence is the sense of being there with other people. Both have a direct effect on how audiences respond emotionally. Copresence boosts cognitive empathy—the ability to understand what someone else is going through. Self-location and copresence together drive affective empathy—the capacity to share in those feelings. The format is changing what the audience is neurologically equipped to feel. Neuroscience confirms the difference at the signal level. EEG studies comparing VR with television viewing have documented greater mu rhythm suppression during VR sessions—a neural signature long associated with empathic response and mirror neuron activity. The brain registers immersive content differently from flat content. It shows up on EEG equipment, independently of what the audience reports feeling. These findings explain why immersive storytelling is being adopted in fields where emotional connection and behavioral change actually matter: humanitarian communication, climate advocacy, public health, education. But the effect is not automatic. Presence on its own is just immersion. Real emotional and behavioral impact comes from the combination of presence, intentional narrative design, and ethical representation of the subject. Without the second and third, the first is a novelty. Core formats There are five core formats producing immersive storytelling today. They differ in how they are built, how they reach the audience, and what kind of story they can carry. The choice between them is usually the first practical decision in any project. 360° video is the lowest barrier to entry. It is filmed, not built, using specialized cameras that capture the full surrounding scene, which the viewer then explores by turning their head. Production logic is closer to documentary filmmaking than to game development, which makes it accessible to teams already working in video. It is the strongest fit for documentary, fundraising, brand stories, and any project where the goal is to transport the audience into a real place. It is also the most common entry point for organizations producing their first immersive piece. Interactive VR experiences are fully built in engines like Unity or Unreal. Unlike 360° video, the environment is constructed rather than filmed, which means the audience can move through it, interact with objects, and trigger branching narratives. VR development is closer to game development than to film, with longer timelines and higher budgets, but the payoff is depth: the audience can spend hours inside a well-built VR experience and keep finding new layers. This format is the strongest fit for education, simulation, and brand experiences where engagement time matters more than reach. AR experiences anchor digital content to physical locations or objects, delivered through smartphones or smart glasses. The audience stays in the real world and sees a layer of story added on top of it. This makes AR and MR development especially valuable when the physical context is part of the message: a museum exhibit that comes alive when viewed through a phone, a historical site that reconstructs itself on screen, a product that reveals its inner workings when scanned. AR works…

From Pain Relief to Rehabilitation: A Portrait of VR Therapeutics in 2026
May 27, 2026
From Pain Relief to Rehabilitation: A Portrait of VR Therapeutics in 2026

VR therapeutics is becoming a real category of reimbursable medicine. It now has FDA authorization pathways, dedicated billing codes, and growing support from commercial insurers. This shift didn’t happen overnight. It has built up over several years through a series of regulatory, clinical, and commercial milestones that together make 2026 a turning point for the industry. The market is starting to reflect that. Estimates vary by methodology, but SNS Insider projects the broader VR healthcare market to grow from $4.27B in 2024 to $46.4B by 2032 (a 33% CAGR). VR telerehabilitation alone is projected to grow from $1.2B in 2026 to $2.67B by 2030, a 22% CAGR that captures the segment this article focuses on. Three moments tell the story of how we got here. 2021: The first prescription VR therapy gets FDA cleared. AppliedVR’s RelieVRx became the first VR product authorized as a prescription medical device in the US. 2023: Medicare opens the reimbursement door. Centers for Medicare and Medicaid Services created the first VR-specific billing code, placing prescription VR into the Durable Medical Equipment category. The practical effect: doctors gained a way to prescribe VR therapy, and insurers gained a code to pay against. 2025: Commercial insurers begin following Medicare’s lead. In September, Cigna became one of the first major commercial payers to cover FDA-approved digital therapeutics. In this article, we’ll walk through six therapeutic domains where that infrastructure is taking shape. Each has its own clinical logic, its own leading players, and its own path to scale.  Market architecture Before we walk through the six therapeutic domains, it’s worth understanding the shape of the market they sit inside: what’s growing, where the money is concentrated, and what changed structurally between 2023 and 2025 to make any of this viable. Where therapy and rehab sits inside VR healthcare VR healthcare as a whole spans everything from surgical training simulators to anatomical education tools. But within that broader market, VR therapeutics and rehabilitation is the fastest-growing application segment, and it’s also where regulatory and reimbursement infrastructure is forming most actively. Inside therapy-and-rehab itself, two sub-segments are consistently identified by independent market research as the fastest-growing: pain management and mental health therapy. Both have something the other categories don’t yet: FDA-cleared products in the market, peer-reviewed efficacy data, and at least nascent reimbursement pathways. Geographically, the market is concentrated in two regions for very different reasons. North America is leading adoption mainly because the FDA has started approving prescription VR therapies, and dedicated billing codes now allow healthcare providers to get reimbursed for using them. Europe is catching up via different infrastructure, particularly Germany’s DiGA framework, which provides a parallel route to physician prescription and statutory health insurance coverage. France’s PECAN and the UK’s DTAC are developing in a similar direction. The pattern is clear: once regulators create a formal pathway, companies and investment tend to follow. What the hardware cycle unlocked The clinical use cases for VR therapy didn’t really change between 2020 and 2025. What changed is that the hardware finally became viable for the business models the clinical work demanded. Consumer-grade standalone headsets brought the price floor down to where at-home prescription models work. Meta Quest 3, Meta Quest 3S, and Pico 4 helped bring standalone VR headsets to more affordable consumer price levels—an important step for prescription VR therapies that patients are expected to use at home. RelieVRx, for example, is a self-administered program delivered to patients in their living rooms; that model is described in detail in MDIC’s case study of the product. Major headset manufacturers are doubling down on healthcare partnerships rather than building healthcare-specific hardware. A useful signal here is HTC VIVE’s April 2025 expansion with Mynd Immersive, Select Rehabilitation, and AT&T into more than 150 US senior living communities—the largest deployment of immersive therapeutics into senior care to date. The interesting strategic detail isn’t the size of the rollout but its structure: a hardware OEM (HTC), a content/care platform (Mynd), a clinical services partner (Select Rehab), and a connectivity provider (AT&T). That’s the four-party stack that scaled clinical VR is going to require, and partnerships like this one are essentially templates that the rest of the industry will be copying. Body: pain & physical rehab 1. Pain management Pain is the single largest unmet need in clinical medicine. In the United States alone, roughly 50 million adults live with chronic pain, and the toolkit physicians have to treat it is uncomfortably narrow: opioids carry addiction risk, non-opioid pharmaceuticals are inconsistently effective, and behavioral therapies are scarce and slow. Procedural pain is its own category, often managed with anesthesia or sedation, which adds cost, risk, and recovery time. This is the gap VR fills. The clinical evidence for VR as a pain intervention rests on two well-documented neurological mechanisms. The first is gate control theory: pain signals traveling up the spinal cord compete with other sensory inputs for processing capacity, and immersive visual and auditory stimulation can effectively crowd them out before they reach the brain as pain. The second is cognitive load: a fully immersive VR experience occupies enough of that capacity to leave less available for processing pain as pain. Together, these mechanisms make VR more than just a distraction. They turn it into a real neurological intervention, which helps explain why VR can reduce pain in clinical settings where simpler distractions like music or conversation often cannot. There are two distinct applications emerging from this. The first is procedural pain, where Medtronic provides the clearest commercial example. Medtronic’s VR solution makes office hysteroscopy more comfortable by immersing the patient in a virtual environment during the procedure. According to Medtronic, the immersive sedation-analgesia content reduces patient anxiety and decreases pain-related brain activity. The second application is chronic pain. RelieVRx, which we talked about above, is a shining example, receiving Breakthrough Device Designation and De Novo authorization specifically for chronic lower back pain. A regulatory pathway the AppliedVR team has documented in detail in the peer-reviewed literature. The clinical data behind…



Let's discuss your ideas

Contact us