It comes out after being called out for a long time.
Source|AI LANMEDIAHUI
ID:lanmeih001
Author|Yiqi
Editor|Wei Xiao
It is no exaggeration to say that the entire industry is waiting for Apple’s head display.
This is the information disclosed to AI Lan Media Hui (ID: lanmeih001) by a senior executive of a leading AR manufacturer in China at last year’s Apple Worldwide Developers Conference (WWDC) after Apple’s headset bounced again. : "The entire industry is waiting for Apple to set a 'benchmark' and then wait and see the market's feedback."
Finally, Apple’s AR headset named Vision Pro, is here.
Picture/Vision Pro
At 1:00 am on June 6, 2023, Beijing time, the 2023 Apple Global Developers Conference arrived as scheduled. After a year, the outside world is once again amazed by Apple's leading innovation and R&D capabilities: the new generation of MacBook Air, MacBook Pro, and the more personalized IOS17 system...
And the much-anticipated Vision Pro head-mounted display - Apple CEO Cook said at the meeting that Apple Vision Pro "is a revolutionary product with its performance, immersion and functionality Only Apple can deliver."
Summer is approaching in the northern hemisphere, and the first-round king of the AR industry is about to appear on the poker table.
Apple AR, the debut is the peak?
So today, I'm excited to announce an entirely new AR platform with a revolutionary new product (So today, I'm extremely excited to announce an entirely new AR platform, a revolutionary new product).
Vision Pro came out. For Apple, it took seven years of hard work; for technology enthusiasts, it took a long time to come out.
For the AR industry, it is a rewriting or even reconstruction of the ceiling of technical concepts.
Photo source/techradar.
As one of the most watched new products at this conference, Vision Pro is Apple’s blockbuster product entering the MR (AR/VR) field. According to the information released at the meeting, Vision Pro is a head-mounted device that integrates augmented reality and virtual reality functions and uses Apple M2 R1 dual-chip design.
Similar to the iPhone chip, the M2 chip in Vision Pro will also provide top computing performance, maintain a comfortable temperature and be almost silent while the device is running; the other new R1 chip is designed for "challenging tasks" Designed for “extreme real-time sensor processing tasks,” it handles input from the 12 cameras, five sensors, and six microphones on the Vision Pro device.
It is well known that in other head-mounted systems, the delay between the sensor and the display can cause discomfort during exercise. The R1 chip almost eliminates the delay in transmitting new images to the display - the picture delay is controlled to within 12 milliseconds, which is equivalent to one-eighth of the time it takes a human to blink.
While m two ensures that apple vision pro delivers incredible standalone performance, r one ensures that experiences feel like they're taking place right in front of your eyes (M2 chip ensures that apple vision pro delivers incredible standalone performance, The R1 chip ensures that the experience is as if it is happening before your eyes).
With the support of powerful computing power and transmission rate, Vision Pro achieves true eye tracking and gesture control.
The spokesperson summarized the visual experience of Vision Pro as "a completely three-dimensional interface; an interface that can be magically controlled using only your eyes, hands and voice" - all graphical elements displayed in Vision Pro will be realistic Presented in a real-life room, has a sense of materiality and can dynamically respond to light to cast shadows, helping users understand proportion and distance.
Controlling these elements also does not require any media, it can be done with just gestures.
we designed every gesture to be as subtle and natural as possible.
In addition, Vision Pro also has functions such as iris scanning for identity verification and avatar modeling.
However, it is a bit regrettable that the current version of Apple’s AR headset has not been able to achieve the “Wireless” goal set by the company in 2017.
图/Wireless?
A white braided wire is placed on the left side of the product, giving the user only options:
1. Plug the cord into the power supply and use it throughout the day. It is unclear how long the cord is.
2. Connect the external battery with a cable, and the battery life is 2 hours. Keep the battery in your pocket or somewhere else close by.
Well, you need to wear pants with pockets at home.
Vision Pro will be officially released in the United States early next year, and will be available for purchase in other countries and regions later. The price is US$3,499, which is approximately RMB 24,851.
Of course, like all important products in previous years, Apple seems very confident about this headset.
It's not often we get the chance to find an entirely new category to establish the principles that will influence the design for years to come in principle).
Many updates, but AI Siri is absent
In addition to AR headsets, Apple also released a new generation of 15-inch MacBook Air at this conference, as well as Mac Studio and Mac Pro, supporting IOS17, iPad OS, Mac OS, and Watch OS system components.
The update of IOS 17 introduces many additional features, but there are no major changes compared to the past. Most of them are improvements based on the usage habits and personalized needs of iPhone users.
For example, Facetime will support the message video function, Messages supports short word search, voice-to-text, and location sharing. The incoming call interface will support customized photos or avatars; AirDrop has added a "NameDrop" function, which can connect the phone to another person. When an Apple device is actively contacted, personal image, contact information, homepage audio, video and other information will be air-dropped; when the iPhone is placed horizontally in standby, the lock screen interface will be able to display the clock, weather, third-party widgets, or takeout delivery time and other information.
As for the AI topic, which is quite hot this year, Apple did not mention much. There were rumors that Siri would be connected to generative AI, but this was eventually falsified. The only change to Siri is that it no longer needs to shout "Hey" when waking up. It can be triggered by just one word "Siri" and does not need to be repeated later. The Transformer architecture related to large language models is only mentioned in the text input error correction process.
It seems that, at least in 2023, Apple is not particularly concerned about the conjecture of making Siri become SiriGPT or other big models.
Today’s topic
Will you buy Apple’s AR headset?
Come to the comment area and let’s chat~
Review of past classics
The above is the detailed content of With Apple coming, will AR be saved?. For more information, please follow other related articles on the PHP Chinese website!

计算机编程中常见的if语句是条件判断语句。if语句是一种选择分支结构,它是依据明确的条件选择选择执行路径,而不是严格按照顺序执行,在编程实际运用中要根据程序流程选择适合的分支语句,它是依照条件的结果改变执行的程序;if语句的简单语法“if(条件表达式){// 要执行的代码;}”。

前言本文继续来介绍Python集合模块,这次主要简明扼要的介绍其内的命名元组,即namedtuple的使用。闲话少叙,我们开始——记得点赞、关注和转发哦~ ^_^创建命名元组Python集合中的命名元组类namedTuples为元组中的每个位置赋予意义,并增强代码的可读性和描述性。它们可以在任何使用常规元组的地方使用,且增加了通过名称而不是位置索引方式访问字段的能力。其来自Python内置模块collections。其使用的常规语法方式为:import collections XxNamedT

作为一门高效的编程语言,Go在图像处理领域也有着不错的表现。虽然Go本身的标准库中没有提供专门的图像处理相关的API,但是有一些优秀的第三方库可以供我们使用,比如GoCV、ImageMagick和GraphicsMagick等。本文将重点介绍使用GoCV进行图像处理的方法。GoCV是一个高度依赖于OpenCV的Go语言绑定库,其

最近,PHP8.0发布了一个新的邮件库,使得在PHP中发送和接收电子邮件变得更加容易。这个库具有强大的功能,包括构建电子邮件,发送电子邮件,解析电子邮件,获取附件和解决电子邮件获得卡住的问题。在很多项目中,我们都需要使用电子邮件来进行通信和一些必备的业务操作。而PHP8.0中的邮件库可以让我们轻松地实现这一点。接下来,我们将探索这个新的邮件库,并了解如何在我

随着PHP8.0的发布,DOMDocument作为PHP内置的XML解析库,也有了新的变化和增强。DOMDocument在PHP中的重要性不言而喻,尤其在处理XML文档方面,它的功能十分强大,而且使用起来也十分简单。本文将介绍PHP8.0中DOMDocument的新特性和应用。一、DOMDocument概述DOM(DocumentObjectModel)

Python 中的 main 函数充当程序的执行点,在 Python 编程中定义 main 函数是启动程序执行的必要条件,不过它仅在程序直接运行时才执行,而在作为模块导入时不会执行。要了解有关 Python main 函数的更多信息,我们将从如下几点逐步学习:什么是 Python 函数Python 中 main 函数的功能是什么一个基本的 Python main() 是怎样的Python 执行模式Let’s get started什么是 Python 函数相信很多小伙伴对函数都不陌生了,函数是可

PHP8.0是PHP语言的最新版本,自发布以来已经引发了广泛的关注和争议。其中,最引人瞩目的新特性之一就是Symbol类型。Symbol类型是PHP8.0中新增的一种数据类型,它类似于JavaScript中的Symbol类型,可用于表示独一无二的值。这意味着,两个Symbol类型的值即使完全相同,它们也是不相等的。Symbol类型的使用可以避免在不同的代码段

PHP8.0中的HTTP客户端库PHP8.0的发布带来了很多新特性和改进,其中一个最引人注目的是内置的HTTP客户端库的加入。这个库提供了一个简单的方法来发送HTTP请求并处理返回的响应。在本文中,我们将探讨这个库的主要功能和用法。发送HTTP请求使用PHP8.0内置的HTTP客户端库发送HTTP请求非常简单。在本例中,我们将使用GET方法获取这个网站的首页


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
