AliGenie AR Fuels the Ali New Retail Strategy - Commodity Show

AR is used to display the product,which has great advantages. The users can see, know and operate the product virtually before buying them. We have developed several applications for the mobile users. I will introduce some of them for you. ARDetail shows the details information of products. At the same time, the user can see actual appearance and size under real environment. SLAM and various kinds of detections are integrated intelligently to make the tracking fast and stably. There is a robot car rendered in this video. Although we vibrated the phone, you can see the robot stayed firmly on the screen.

This video shows our Product Description application. After the customer shoots at the object, such as electric appliance, the application will pop up the 3D model of this appliance cover the real one. The customer can press the button of the model, which led the application to give useful information to the customer. It helps the customer to understand the product correctly and completely. The model-based tracking suits to this condition.

AR can be used to measure the size of the object. We applied the similar method named ARRuler to measure the person’s feet. The result we achieved is prettry good. The error is less than 4mm. For example, there is an AR page for man shoes on Taobao, pv/day is 49 thousands, uv/day is 34 thousands. Every watch time is 28 seconds. Direct GMV for one marketing activities is more than 10 millions yuan.

时间: 2024-11-18 02:53:14

AliGenie AR Fuels the Ali New Retail Strategy - Commodity Show的相关文章

AliGenie AR Fuels the Ali New Retail Strategy - Interactive Marketing Activities

As you know, AR technologies provide powerful perception of physical world, nature human interaction and enhanced visual impact. Therefore it will change our everyday life from shopping, reading and traveling etc. Alibaba are always making great effo

AliGenie AR Fuels the Ali New Retail Strategy - AR Navigation

(3) AR Navigation Navigation is, perhaps, the most natural fit between AR and useful technology. Simply put, when you're going somewhere, you need to know both where you are and where you're going. Augmented Reality will show you how to reach the des

AliGenie AR Fuels the Ali New Retail Strategy - O2O

E-commerce is no longer online only. Many online activities can be translated to offline purchases. Online-to-offline, or O2O, is big in China. AR is one of important traffic entrances of O2O. For example, Starbucks applied AR for its new Roastery st

AliGenie AR Fuels the Ali New Retail Strategy - Face Recognition

Besides recognition of scenes and objects, face and gait recognitions are also important. I led Alipay Biological Recognition team – Qichenjian to implement face real-name recognition at Alipay. I was also technical PM for Smile to Pay of 2015 Cebit

爱立信:2016年ICT产业五大趋势5G网络演进VR/AR大行其道

"诗家清景在新春,绿柳才黄半未匀", 2015年全球的经济在低迷中,一些行业转型的影子隐约可现.深入分析这些转型的核心,大约都基于以下两点:第一,ICT所承载的互联网能力成为新的平台或者生产要素,各个行业的转型方向或者主要方式都要与互联网能力进行深层次的融合.第二,创新是转型的灵魂,经济或者行业的转型不是简单的叠加和所谓的二次开发,而是要把互联网的能力融合之后进行的全方位创新,只有如此才能真正摆脱目前经济发展的僵局,创造出新的增长引擎.而这一切,与爱立信的"网络社会"

PLT:说说Evaluation strategy

Brief   在学习方法/函数时,我们总会接触到 按值传值 和 引用传值 两个概念.像C#是按值传值,但参数列表添加了ref/out后则是引用传值,但奇怪的事出现了 namespace Foo{ class Bar{ public String Msg{get;set;} } class Program{ public static void main(String[] args){ Bar bar1 = new Bar(); bar1.Msg = "Hey, man!"; Upda

欣赏:http://www.bendjeskov.com.ar

link: http://www.bendjeskov.com.ardesigner name: lausinawebpublishdate: 2004-12-4 23:08:26

php设计模式 Strategy(策略模式)

复制代码 代码如下: <?php /** * 策略模式(Strategy.php) * * 定义一系列算法,把它们一个个封装起来,并且使它们可相互替换,使用得算法的变化可独立于使用它的客户 * */ // ---以下是一系列算法的封闭---- interface CacheTable { public function get($key); public function set($key,$value); public function del($key); } // 不使用缓存 class

策略模式(Strategy Pattern) 详解

策略模式: 定义了算法族, 分别封装起来, 让它们之间可以相互替换, 此模式让算法的变化独立于使用算法的客户. 对于父类的子类族需要经常扩展新的功能, 为了使用父类比较灵活的添加子类, 把父类的行为写成接口(interface)的形式; 使用set()方法, 重新设定接口的行为. 提供行为的调用的方法(如perform), 需要调用接口(interface)的固有方法(fly & quack)即可. 代码: package strategy; public abstract class Duck