Skip to main content

Virtual reality sickness


Virtual reality sickness (VR motion sickness) is the physical discomfort that occurs when an end user's brain receives conflicting signals about self-movement in a digital environment. While the exact number of people who will be affected by VR motion sickness cannot be known in advance, software engineers who develop VR and augmented reality (AR) environments typically assume that 25% of viewers will experience VR motion sickness. This is the same percentage of people who experience motion sickness on an airplane while traveling through low altitude turbulence.

VR sickness is caused by conflicting signals sent to the brain from the person's eyes, inner ear and body tissue sensory receptors. A pronounced feeling of illness typically occurs when the viewer is watching a digital representation of themselves appear to move quickly in a digital environment while the person's physical body remains stationary. Like other types of simulator sickness, the symptoms of VR motion sickness can include nausea, dizziness/lack of balance, drowsiness, warmth, sweating, headaches, disorientation, eye strain and vomiting. Studies have shown that participants in a VR experience can feel ill up to several hours after taking off their VR headsets.

Underlying causes of VR sickness

There are several theories about the root causes of VR motion sickness and differences in how individuals use vision to maintain their balance may be one contributing element. The biggest contributing factor, however, is thought to be caused by the sensory conflicts that send confusing messages to the brain. This is because even though the person's eyes may say they are walking around a virtual world, their body will tell them that they are actually sitting down and those conflicting sensory signals cause a feeling of illness.

Current research indicates that gender and age may also play an important role in determining who may fall victim to VR motion sickness. For example, woman are more likely to be affected than men. While some researchers believe this is because women lag behind men in the consumption of virtual reality programming, other researchers believe that women are more likely to get sick from VR because they have better peripheral vision than men and require a larger field of view (FOV) to avoid motion sickness. Different ages and stages in life may also determine if a user will be affected by VR sickness. Genetics are also thought to play a role in determining who will be affected by VR motion sickness. If a person's family exhibits migraines, inner ear conditions, problems with sight, or past experiences with motion sickness, then it is likely the offspring will be genetically predisposed to suffer in the same way.

How VR developers can avoid making end users sick

The first fix software developers can make to avoid giving users VR motion sickness is to adjust the frame per second (FPS) rate to reduce lag time. VR engineers recommend that instead of focusing attention on using more processing power to create a sharper picture, developers should focus on increasing the speed at which each frame refreshes to at least 90 FPS. This speed will help reduce delay or shaking in the images as they pass across the screen.

Sensory conflict can be aggravated by latency. If a VR participant looks to the right while wearing a VR helmet, for example, the screen shifts left to ensure the viewer's digital environment matches their physical actions. While this shift appears to be occurring in real time, it actually occurs in near real-time. While the movement across the screen may seem immediate to the viewer, the lag time still creates a mismatch between what the person's eyes tell them and what their body's tissue sensors are actually experiencing.

Perhaps the best way to avoid VR motion sickness, however, is to test each shot while creating it and expose someone with high sensitivity to frame rates and see how they react. This approach will inform developers if their shots are smooth and clean enough to leave users unaffected. Other proposed fixes include using headsets that are placed further from the user's face and using mixed reality (MR) instead of virtual reality to provide the viewer with a fixed horizon or visual reference point.

Unlike virtual reality which immerses the end user in a completely digital environment, or augmented reality which layers digital content on top of a physical environment, mixed reality blends digital and real world settings. Digital cinematographers have had good success preventing VR sickness by simply adding a virtual representation of the viewer's nose or hand to the MR screen. Unfortunately, many current VR locomotion solutions have negative outcomes along with the positive. For example, the extremely helpful fix of using mixed reality takes away the immersive experience that VR users are paying for.


Comments

Popular posts from this blog

Ghosting

Ghosting is to cease communications without notification. The use of the word "ghost" as a verb originated in social media in reference to dating, but the term is now used by employers to describe employees and potential employees who suddenly disappear. Typically, ghosting is used to describe: Job candidates who suddenly stop responding to messages. New hires who fail to show up for their first day of work. Employees who do not show up for a shift. Employees who leave work in the middle of the day and never come back. Some analysts blame ghosting on millennial entitlement. The reasoning is that members of the millennial generation have been brought up to feel they are special -- so special, in fact, that they do not need to follow conventional rules of behavior. Other analysts, however, maintain that ghosting behavior stems from changes in the job market and the phenomenon is simply a reflection of the laws of supply and demand in a healthy jo...

Data deduplication

Data deduplication -- often called intelligent compression or single-instance storage -- is a process that eliminates redundant copies of data and reduces storage overhead. Data deduplication techniques ensure that only one unique instance of data is retained on storage media, such as disk, flash or tape. Redundant data blocks are replaced with a pointer to the unique data copy. In that way, data deduplication closely aligns with incremental backup, which copies only the data that has changed since the previous backup. For example, a typical email system might contain 100 instances of the same 1 megabyte (MB) file attachment. If the email platform is backed up or archived, all 100 instances are saved, requiring 100 MB of storage space. With data deduplication, only one instance of the attachment is stored; each subsequent instance is referenced back to the one saved copy. In this example, a 100 MB storage demand drops to 1 MB. Target vs. source deduplication Data deduplica...

A Graphics Processing Unit (GPU)

A graphics processing unit (GPU) is a computer chip that performs rapid mathematical calculations, primarily for the purpose of rendering images. A GPU may be found integrated with a central processing unit (CPU) on the same circuit, on a graphics card or in the motherboard of a personal computer or server. In the early days of computing, the CPU performed these calculations. As more graphics-intensive applications such as AutoCAD were developed; however, their demands put strain on the CPU and degraded performance. GPUs came about as a way to offload those tasks from CPUs, freeing up their processing power. NVIDIA, AMD, Intel and ARM are some of the major players in the GPU market. GPU vs. CPU A graphics processing unit is able to render images more quickly than a central processing unit because of its parallel processing architecture, which allows it to perform multiple calculations at the same time. A single CPU does not have this capability, although multi...