SlideShare a Scribd company logo
1 of 31
Download to read offline
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Integrating new Camera* hardware
with mobile OEM
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
How does Android look like in 3D ?
Mantis and Android
What’s so special about 3D cameras?
What about the future to come?
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
So how does
Android look
like in 3D ?
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Mantis Vision developed state-of-the-art 3D enabling technology (MV4DTM), with unprecedented
accuracy (static and dynamic scenes), for the use in mobile devices and 3D scanners.
Our Mission: To become the platform of choice for accurate capturing of depth and motion in a
way that best portrays reality.
Company Introduction
MANTIS VISION PROPRIETARY & CONFIDENTIAL
TIME
PERFORMACE
High Quality 3D Depth
Sensing is a NEW Technology
S-Curve
Imaging Disruptive Technologies
Real High Quality 3D is a disruptive technology!
1963
2015
1996
2006
3DHTC One M8
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Our technology - Triangulation
Triangulation is the process of determining the location of a point by measuring angle to it from known points at
either end of a fixed baseline, rather than measuring distances to the point directly.
The point can then be fixed as the third point of a triangle with one known side and two known angles.
PRINCIPLES OF OPERATION
 Baseline
 Correspondence
 Localization
MANTIS VISION PROPRIETARY & CONFIDENTIAL
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Our Technology – Epipolar Coding
Our unique code (patented-US8208719) allows a smaller footprint to
uniquely identify many more points than in standard methods (i.e.: any
desired point-resolution could be provided by using a more robust
coded-pattern due to a “smaller footprint”)
This unique technology provide a higher resolution & accuracy for lower
MOS (minimal object size)
MANTIS VISION PROPRIETARY & CONFIDENTIAL
Endless Integration Options
MANTIS VISION PROPRIETARY & CONFIDENTIAL
Instant User Generated
High-Quality 3D Content
MANTIS VISION PROPRIETARY & CONFIDENTIAL
Parametric 3D Imaging & Dynamic registration
MANTIS VISION PROPRIETARY & CONFIDENTIAL
Enhanced 3D Communication
MANTIS VISION PROPRIETARY & CONFIDENTIAL
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Mantis and Android
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Android Dev in MV
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
So what’s so special
about 3D camera?
(That we haven’t work with till now…)
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
• Structured light flash projector
• Hardware projector driver circuit
• Camera modules
• Processing algorithms
NIR Camera
(C)
REAR COLOR
CAMERA
STROBE
LIGHT
FLASH
PROJECTOR (F)
System Overview
System Diagram
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
System Overview
System Diagram
• Structured light flash projector
• Hardware projector driver circuit
• Camera modules
• Processing algorithms
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
New controlled target – “Depth Flash Projector”
Raw data (monochrome, no ISP, full bit-depth)
Unique sensors – RGB-IR
Simultaneous Dual Camera (2 surfaces at once)
Low level sensors tweaking (e.g. Manual exposure, PLL, unique FPS, etc…)
Timing!
“Unordinary” Tasks
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Device Abstraction
MV4D SDK API
DataFlow
OSDepth Camera Driver
Camera Control
AGCDecoderRecorder
Projector Control
Mantis Vision (MV) SDK
Projector DriverColor Camera Driver
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
MV SDK requires for the Projector Driver operating system software support.
Driver interface should provide access to the laser driver hardware through I2C protocol
and should comply to the standard operating system permissions mechanism.
Design shall include pre implemented I2C projector communication service.
 In order to control the operating system need to control the Laser Drive via I2C.
 This can* be done by adding I2C kernel module and a HAL service that will provide access via
the standard android permissions mechanism for applications.
 Service should be formed in order to obtain connection by the SDK.
Mantis Vision (MV) SDK
Projector Driver Interface
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Experience with different OEMs:
OEM System Service
 In most cases it is the OEM that implement System Service according to given request.
 Sometimes might come in a different forms of APIs – effects the generic code.
 OEM/Vendor might not expose everything…
Projector Device Driver
 Might be good only as root adb
 Might be changed under different permissions
Mantis Vision (MV) SDK
Projector Driver Interface – Cont.
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Connecting to Color and IR camera is implemented through Android Standard HAL.
For the IR camera, RDI callback being used*.
CameraListener will be the interface to connect to both cameras (connect(x) will connect
to the IR camera, connect(y) will connect to the Color camera). Both camera instances
must be functional at the same time.
The callback need to expose real frame timestamp. (This is currently unsolved…)
Mantis Vision (MV) SDK
Camera S/W Interface
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Experience with different OEMs:
Different platforms required different interfaces:
 CameraListner, CpuConsumerListner, ProCamera
Some requires very specific headers to be
included in compilation, and might be vulnerable
to OEM changes
Mantis Vision (MV) SDK
Camera S/W Interface – Cont.
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
APPMV SDK
Camera HAL v3 posed new challenges
On one hand new advanced HAL included extended features never (or partially)
supported before (e.g. RAW), but simple callback connection were changed or dropped.
One of our current solutions -
Mantis Vision (MV) SDK
Camera S/W Interface – Cont.
JAVA SDK (.jar)
NATIVE SDK (.so)
JAVA
c/c++
jni
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Android HAL bridges the gap between hardware and software.
It allows the Android application/framework to communicate with the hardware specific
device drivers.
For Android application, HAL provides API’s through which service can place a request to
device.
And HAL uses functions provided by the lower layer Linux system to service the request
from the android framework.
HAL is a c/c++ layer which is a vendor specific implementation.
About HAL
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
There are two different types of Android HAL architecture:
 First one is the legacy Android HAL which looks similar to library implementation.
 Second one gives the complete abstraction and control over the device vendor.
Android HAL implementation looks similar to a Linux device driver.
Most of the Vendor specific implementations can be done in Android HAL rather than the
driver. So that license difference between the driver (Open source license GPL) and the
HAL (Apache License) will give more level of abstraction to vendor.
HAL has structures which specify the HAL type, Module type, version detail, and a set of
function callbacks (methods) which are registered to android framework layer.
 For example if a service from android framework needs data from a sensor device, the service
will make a call to corresponding function in sensor HAL which in turn will talks directly with
Linux device driver.
 The driver will trigger the sensor driver and deliver the data back to the HAL so it can be
passed back to Android application.
The HAL module is compiled into a shared object that is dynamically loaded at runtime
when needed.
HAL Architecture
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
Device Driver
 Linux has predefined system calls which can be used by the user space application to perform
the operation on hardware.
Android kernel Patches
 There are limitation in the Linux kernel, that required patches to make it more powerful for
android.
 Some patches can be found in security, networking, IPC, Power management.
Android Device Drivers
 Device drivers written for Android hardware platforms can not get merged into the main kernel
tree because they have dependencies on code that only lives in Google’s kernel tree, causing it
to fail to build in the kernel.org tree.
 Linux device drivers will also work on android but it will lack some functionality which is specific
to android.
Android Specific Device Drivers
 Device drivers related to android which are integrated with Linux staging folder (e.g. Low
Memory Killer)
 Some of the device drivers which are specific to android are not merged with linux (e.g. Binder)
Device Drivers
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
And what about the
future to come?
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
developing a unified service that should run on any targeted Arm platform (Projector
driver service)
Allow RAW camera processing without being constrained to use color ISP (RDI).
Been able to access the hardware correctly without being limited by OEM open API
(Google Tango API not allowing us to trigger our laser and get RAW data).
Ability to secure CPUGPU affinity as will be required when other developers will run their
code as well in parallel.
Expose some configuration parameters of the depth decoding process without "opening"
the complete parameters to everybody (our use of encrypted config + the additional cfg
parameters that are not encrypted).
How to synchronize 3D camera with other host sensors (e.g. IMU & Temperature
sensors)
Challenges
MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL
And if you are having a good
understanding how to cope with these
kind of challenges –
we are looking for you...
MANTIS VISION PROPRIETARY & CONFIDENTIAL
Thank You
Tomer Kimhi, VP R&D
TomerK@mantis-vision.com
(Time for Demos…)

More Related Content

What's hot

Ch1 hello, android
Ch1 hello, androidCh1 hello, android
Ch1 hello, android
Jehad2012
 
Building Cross Platform Mobile Solutions
Building Cross Platform Mobile SolutionsBuilding Cross Platform Mobile Solutions
Building Cross Platform Mobile Solutions
Qframe
 
Jerry Romanek series mobile development 2012 year end review
Jerry Romanek series   mobile development 2012 year end reviewJerry Romanek series   mobile development 2012 year end review
Jerry Romanek series mobile development 2012 year end review
Leigh Williamson
 
Prototyper - Visure Solutions - Requirements Engineering
Prototyper - Visure Solutions - Requirements EngineeringPrototyper - Visure Solutions - Requirements Engineering
Prototyper - Visure Solutions - Requirements Engineering
Visure Solutions
 
A lap around mango
A lap around mangoA lap around mango
A lap around mango
Andy Chiang
 
Augmented Reality - A look before you leap
Augmented Reality - A look before you leapAugmented Reality - A look before you leap
Augmented Reality - A look before you leap
Gnana Sundar Rajendiran
 

What's hot (20)

SynapseIndia mobile build apps management
SynapseIndia mobile build apps managementSynapseIndia mobile build apps management
SynapseIndia mobile build apps management
 
실전 윈도우폰 망고 앱 디자인 & 개발 III(최종)
실전 윈도우폰 망고 앱 디자인 & 개발 III(최종)실전 윈도우폰 망고 앱 디자인 & 개발 III(최종)
실전 윈도우폰 망고 앱 디자인 & 개발 III(최종)
 
Orange Partner HTML5 Day
Orange Partner HTML5 DayOrange Partner HTML5 Day
Orange Partner HTML5 Day
 
CCI2019 - Governance di una Conversational AI
CCI2019 - Governance di una Conversational AICCI2019 - Governance di una Conversational AI
CCI2019 - Governance di una Conversational AI
 
Simplifying Enterprise Mobility - Powering Mobile Apps from The Cloud
Simplifying Enterprise Mobility - Powering Mobile Apps from The CloudSimplifying Enterprise Mobility - Powering Mobile Apps from The Cloud
Simplifying Enterprise Mobility - Powering Mobile Apps from The Cloud
 
Ch1 hello, android
Ch1 hello, androidCh1 hello, android
Ch1 hello, android
 
Mobile Single-Sign On: Extending SSO Out to the Client - Layer 7's CTO Scott ...
Mobile Single-Sign On: Extending SSO Out to the Client - Layer 7's CTO Scott ...Mobile Single-Sign On: Extending SSO Out to the Client - Layer 7's CTO Scott ...
Mobile Single-Sign On: Extending SSO Out to the Client - Layer 7's CTO Scott ...
 
Build HTML5 VR Apps using Intel® XDK
Build HTML5 VR Apps using Intel® XDKBuild HTML5 VR Apps using Intel® XDK
Build HTML5 VR Apps using Intel® XDK
 
Building Cross Platform Mobile Solutions
Building Cross Platform Mobile SolutionsBuilding Cross Platform Mobile Solutions
Building Cross Platform Mobile Solutions
 
Building Cross Platform Mobile Solutions
Building Cross Platform Mobile SolutionsBuilding Cross Platform Mobile Solutions
Building Cross Platform Mobile Solutions
 
Jerry Romanek series mobile development 2012 year end review
Jerry Romanek series   mobile development 2012 year end reviewJerry Romanek series   mobile development 2012 year end review
Jerry Romanek series mobile development 2012 year end review
 
Governance di una Conversational AI
Governance di una Conversational AIGovernance di una Conversational AI
Governance di una Conversational AI
 
Mobile Augmented Reality Development tools
Mobile Augmented Reality Development toolsMobile Augmented Reality Development tools
Mobile Augmented Reality Development tools
 
Making Augmented Reality Applications with Android NDK
Making Augmented Reality Applications with Android NDKMaking Augmented Reality Applications with Android NDK
Making Augmented Reality Applications with Android NDK
 
Prototyper - Visure Solutions - Requirements Engineering
Prototyper - Visure Solutions - Requirements EngineeringPrototyper - Visure Solutions - Requirements Engineering
Prototyper - Visure Solutions - Requirements Engineering
 
Kony - The multi Channel Challenge
Kony - The multi Channel Challenge Kony - The multi Channel Challenge
Kony - The multi Channel Challenge
 
A lap around mango
A lap around mangoA lap around mango
A lap around mango
 
Kony Mobile Management
Kony Mobile ManagementKony Mobile Management
Kony Mobile Management
 
Kony-Cognizant Webinar: Finding the Silver Bullet in Retail Mobility
Kony-Cognizant Webinar: Finding the Silver Bullet in Retail MobilityKony-Cognizant Webinar: Finding the Silver Bullet in Retail Mobility
Kony-Cognizant Webinar: Finding the Silver Bullet in Retail Mobility
 
Augmented Reality - A look before you leap
Augmented Reality - A look before you leapAugmented Reality - A look before you leap
Augmented Reality - A look before you leap
 

Similar to Tomer kimhi mobmodcon-nov2015-integrating new camera hardware

IBM Impact session 1654-how to move an existing cics application to a smartphone
IBM Impact session 1654-how to move an existing cics application to a smartphoneIBM Impact session 1654-how to move an existing cics application to a smartphone
IBM Impact session 1654-how to move an existing cics application to a smartphone
nick_garrod
 
Android Basic By Ankit Shandilya
Android Basic By Ankit ShandilyaAndroid Basic By Ankit Shandilya
Android Basic By Ankit Shandilya
Ankit Shandilya
 
Virtual Smart-phone (1) (1)
Virtual Smart-phone (1) (1)Virtual Smart-phone (1) (1)
Virtual Smart-phone (1) (1)
Hemanth kumar
 
Android Annotations and RoboGuice
Android Annotations and RoboGuiceAndroid Annotations and RoboGuice
Android Annotations and RoboGuice
Joel Sticha
 
Mobile Enterprise Applications
Mobile Enterprise ApplicationsMobile Enterprise Applications
Mobile Enterprise Applications
Jason Conger
 
Mono for Android Development
Mono for Android DevelopmentMono for Android Development
Mono for Android Development
Thinslices
 

Similar to Tomer kimhi mobmodcon-nov2015-integrating new camera hardware (20)

Aurea Vision & Aurea Consulting: technology proposal
Aurea Vision & Aurea Consulting: technology proposalAurea Vision & Aurea Consulting: technology proposal
Aurea Vision & Aurea Consulting: technology proposal
 
Securing Android Applications
Securing Android ApplicationsSecuring Android Applications
Securing Android Applications
 
Streaming Multimedia content distribution system using mobile application by...
Streaming  Multimedia content distribution system using mobile application by...Streaming  Multimedia content distribution system using mobile application by...
Streaming Multimedia content distribution system using mobile application by...
 
Mobilecloud
MobilecloudMobilecloud
Mobilecloud
 
Mobilecloud
MobilecloudMobilecloud
Mobilecloud
 
Android architecture
Android architectureAndroid architecture
Android architecture
 
IBM Impact session 1654-how to move an existing cics application to a smartphone
IBM Impact session 1654-how to move an existing cics application to a smartphoneIBM Impact session 1654-how to move an existing cics application to a smartphone
IBM Impact session 1654-how to move an existing cics application to a smartphone
 
Android Basic By Ankit Shandilya
Android Basic By Ankit ShandilyaAndroid Basic By Ankit Shandilya
Android Basic By Ankit Shandilya
 
Virtual Smart-phone (1) (1)
Virtual Smart-phone (1) (1)Virtual Smart-phone (1) (1)
Virtual Smart-phone (1) (1)
 
Android Annotations and RoboGuice
Android Annotations and RoboGuiceAndroid Annotations and RoboGuice
Android Annotations and RoboGuice
 
Introduction to Android
Introduction to Android Introduction to Android
Introduction to Android
 
Mind the gap
Mind the gapMind the gap
Mind the gap
 
Working with mobile app developers to enable indoor location based services
Working with mobile app developers to enable indoor location based servicesWorking with mobile app developers to enable indoor location based services
Working with mobile app developers to enable indoor location based services
 
Philipp Nagele (Wikitude) Wikitude SDK Tutorial
Philipp Nagele (Wikitude) Wikitude SDK Tutorial Philipp Nagele (Wikitude) Wikitude SDK Tutorial
Philipp Nagele (Wikitude) Wikitude SDK Tutorial
 
Waking App Ltd: Next Gen AR Toolset
Waking App Ltd: Next Gen AR ToolsetWaking App Ltd: Next Gen AR Toolset
Waking App Ltd: Next Gen AR Toolset
 
Xamarin Platform
Xamarin PlatformXamarin Platform
Xamarin Platform
 
Mobile Enterprise Applications
Mobile Enterprise ApplicationsMobile Enterprise Applications
Mobile Enterprise Applications
 
Android technology
Android technologyAndroid technology
Android technology
 
Ipad Application Development Casestudy
Ipad Application Development CasestudyIpad Application Development Casestudy
Ipad Application Development Casestudy
 
Mono for Android Development
Mono for Android DevelopmentMono for Android Development
Mono for Android Development
 

Recently uploaded

Top profile Call Girls In Udgir [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Udgir [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Udgir [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Udgir [ 7014168258 ] Call Me For Genuine Models We ...
gajnagarg
 
怎样办理伍伦贡大学毕业证(UOW毕业证书)成绩单留信认证
怎样办理伍伦贡大学毕业证(UOW毕业证书)成绩单留信认证怎样办理伍伦贡大学毕业证(UOW毕业证书)成绩单留信认证
怎样办理伍伦贡大学毕业证(UOW毕业证书)成绩单留信认证
ehyxf
 
Mankhurd Call Girls, 09167354423 Mankhurd Escorts Services,Mankhurd Female Es...
Mankhurd Call Girls, 09167354423 Mankhurd Escorts Services,Mankhurd Female Es...Mankhurd Call Girls, 09167354423 Mankhurd Escorts Services,Mankhurd Female Es...
Mankhurd Call Girls, 09167354423 Mankhurd Escorts Services,Mankhurd Female Es...
Priya Reddy
 
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
ehyxf
 
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
wpkuukw
 
一比一维多利亚大学毕业证(victoria毕业证)成绩单学位证如何办理
一比一维多利亚大学毕业证(victoria毕业证)成绩单学位证如何办理一比一维多利亚大学毕业证(victoria毕业证)成绩单学位证如何办理
一比一维多利亚大学毕业证(victoria毕业证)成绩单学位证如何办理
uodye
 
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
uodye
 
怎样办理昆士兰大学毕业证(UQ毕业证书)成绩单留信认证
怎样办理昆士兰大学毕业证(UQ毕业证书)成绩单留信认证怎样办理昆士兰大学毕业证(UQ毕业证书)成绩单留信认证
怎样办理昆士兰大学毕业证(UQ毕业证书)成绩单留信认证
ehyxf
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
tufbav
 
Jual Obat Aborsi Samarinda ( No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Jual Obat Aborsi Samarinda (  No.1 ) 088980685493 Obat Penggugur Kandungan Cy...Jual Obat Aborsi Samarinda (  No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Jual Obat Aborsi Samarinda ( No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Obat Aborsi 088980685493 Jual Obat Aborsi
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
ehyxf
 
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
uodye
 
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
ougvy
 
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
tufbav
 
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
wpkuukw
 

Recently uploaded (20)

Mass storage systems presentation operating systems
Mass storage systems presentation operating systemsMass storage systems presentation operating systems
Mass storage systems presentation operating systems
 
Top profile Call Girls In Udgir [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Udgir [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Udgir [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Udgir [ 7014168258 ] Call Me For Genuine Models We ...
 
怎样办理伍伦贡大学毕业证(UOW毕业证书)成绩单留信认证
怎样办理伍伦贡大学毕业证(UOW毕业证书)成绩单留信认证怎样办理伍伦贡大学毕业证(UOW毕业证书)成绩单留信认证
怎样办理伍伦贡大学毕业证(UOW毕业证书)成绩单留信认证
 
Mankhurd Call Girls, 09167354423 Mankhurd Escorts Services,Mankhurd Female Es...
Mankhurd Call Girls, 09167354423 Mankhurd Escorts Services,Mankhurd Female Es...Mankhurd Call Girls, 09167354423 Mankhurd Escorts Services,Mankhurd Female Es...
Mankhurd Call Girls, 09167354423 Mankhurd Escorts Services,Mankhurd Female Es...
 
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
 
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
 
一比一维多利亚大学毕业证(victoria毕业证)成绩单学位证如何办理
一比一维多利亚大学毕业证(victoria毕业证)成绩单学位证如何办理一比一维多利亚大学毕业证(victoria毕业证)成绩单学位证如何办理
一比一维多利亚大学毕业证(victoria毕业证)成绩单学位证如何办理
 
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
 
怎样办理昆士兰大学毕业证(UQ毕业证书)成绩单留信认证
怎样办理昆士兰大学毕业证(UQ毕业证书)成绩单留信认证怎样办理昆士兰大学毕业证(UQ毕业证书)成绩单留信认证
怎样办理昆士兰大学毕业证(UQ毕业证书)成绩单留信认证
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
 
Jual Obat Aborsi Samarinda ( No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Jual Obat Aborsi Samarinda (  No.1 ) 088980685493 Obat Penggugur Kandungan Cy...Jual Obat Aborsi Samarinda (  No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Jual Obat Aborsi Samarinda ( No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
 
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
 
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
 
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
 
Vashi Affordable Call Girls ,07506202331,Vasai Virar Charming Call Girl
Vashi Affordable Call Girls ,07506202331,Vasai Virar Charming Call GirlVashi Affordable Call Girls ,07506202331,Vasai Virar Charming Call Girl
Vashi Affordable Call Girls ,07506202331,Vasai Virar Charming Call Girl
 
Critical Commentary Social Work Ethics.pptx
Critical Commentary Social Work Ethics.pptxCritical Commentary Social Work Ethics.pptx
Critical Commentary Social Work Ethics.pptx
 
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
 
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Jeddah +966572737505 <> buy cytotec <> unwanted kit Saudi A...
 
LANDSLIDE MONITORING AND ALERT SYSTEM FINAL YEAR PROJECT BROCHURE
LANDSLIDE MONITORING AND ALERT SYSTEM FINAL YEAR PROJECT BROCHURELANDSLIDE MONITORING AND ALERT SYSTEM FINAL YEAR PROJECT BROCHURE
LANDSLIDE MONITORING AND ALERT SYSTEM FINAL YEAR PROJECT BROCHURE
 

Tomer kimhi mobmodcon-nov2015-integrating new camera hardware

  • 1. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Integrating new Camera* hardware with mobile OEM
  • 2. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL How does Android look like in 3D ? Mantis and Android What’s so special about 3D cameras? What about the future to come?
  • 3. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL So how does Android look like in 3D ?
  • 4. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Mantis Vision developed state-of-the-art 3D enabling technology (MV4DTM), with unprecedented accuracy (static and dynamic scenes), for the use in mobile devices and 3D scanners. Our Mission: To become the platform of choice for accurate capturing of depth and motion in a way that best portrays reality. Company Introduction
  • 5. MANTIS VISION PROPRIETARY & CONFIDENTIAL TIME PERFORMACE High Quality 3D Depth Sensing is a NEW Technology S-Curve Imaging Disruptive Technologies Real High Quality 3D is a disruptive technology! 1963 2015 1996 2006 3DHTC One M8
  • 6. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Our technology - Triangulation Triangulation is the process of determining the location of a point by measuring angle to it from known points at either end of a fixed baseline, rather than measuring distances to the point directly. The point can then be fixed as the third point of a triangle with one known side and two known angles. PRINCIPLES OF OPERATION  Baseline  Correspondence  Localization MANTIS VISION PROPRIETARY & CONFIDENTIAL
  • 7. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Our Technology – Epipolar Coding Our unique code (patented-US8208719) allows a smaller footprint to uniquely identify many more points than in standard methods (i.e.: any desired point-resolution could be provided by using a more robust coded-pattern due to a “smaller footprint”) This unique technology provide a higher resolution & accuracy for lower MOS (minimal object size)
  • 8. MANTIS VISION PROPRIETARY & CONFIDENTIAL Endless Integration Options
  • 9. MANTIS VISION PROPRIETARY & CONFIDENTIAL Instant User Generated High-Quality 3D Content
  • 10. MANTIS VISION PROPRIETARY & CONFIDENTIAL Parametric 3D Imaging & Dynamic registration
  • 11. MANTIS VISION PROPRIETARY & CONFIDENTIAL Enhanced 3D Communication
  • 12. MANTIS VISION PROPRIETARY & CONFIDENTIAL
  • 13. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Mantis and Android
  • 14. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Android Dev in MV
  • 15. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL So what’s so special about 3D camera? (That we haven’t work with till now…)
  • 16. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL • Structured light flash projector • Hardware projector driver circuit • Camera modules • Processing algorithms NIR Camera (C) REAR COLOR CAMERA STROBE LIGHT FLASH PROJECTOR (F) System Overview System Diagram
  • 17. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL System Overview System Diagram • Structured light flash projector • Hardware projector driver circuit • Camera modules • Processing algorithms
  • 18. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL New controlled target – “Depth Flash Projector” Raw data (monochrome, no ISP, full bit-depth) Unique sensors – RGB-IR Simultaneous Dual Camera (2 surfaces at once) Low level sensors tweaking (e.g. Manual exposure, PLL, unique FPS, etc…) Timing! “Unordinary” Tasks
  • 19. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Device Abstraction MV4D SDK API DataFlow OSDepth Camera Driver Camera Control AGCDecoderRecorder Projector Control Mantis Vision (MV) SDK Projector DriverColor Camera Driver
  • 20. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL MV SDK requires for the Projector Driver operating system software support. Driver interface should provide access to the laser driver hardware through I2C protocol and should comply to the standard operating system permissions mechanism. Design shall include pre implemented I2C projector communication service.  In order to control the operating system need to control the Laser Drive via I2C.  This can* be done by adding I2C kernel module and a HAL service that will provide access via the standard android permissions mechanism for applications.  Service should be formed in order to obtain connection by the SDK. Mantis Vision (MV) SDK Projector Driver Interface
  • 21. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Experience with different OEMs: OEM System Service  In most cases it is the OEM that implement System Service according to given request.  Sometimes might come in a different forms of APIs – effects the generic code.  OEM/Vendor might not expose everything… Projector Device Driver  Might be good only as root adb  Might be changed under different permissions Mantis Vision (MV) SDK Projector Driver Interface – Cont.
  • 22. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Connecting to Color and IR camera is implemented through Android Standard HAL. For the IR camera, RDI callback being used*. CameraListener will be the interface to connect to both cameras (connect(x) will connect to the IR camera, connect(y) will connect to the Color camera). Both camera instances must be functional at the same time. The callback need to expose real frame timestamp. (This is currently unsolved…) Mantis Vision (MV) SDK Camera S/W Interface
  • 23. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Experience with different OEMs: Different platforms required different interfaces:  CameraListner, CpuConsumerListner, ProCamera Some requires very specific headers to be included in compilation, and might be vulnerable to OEM changes Mantis Vision (MV) SDK Camera S/W Interface – Cont.
  • 24. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL APPMV SDK Camera HAL v3 posed new challenges On one hand new advanced HAL included extended features never (or partially) supported before (e.g. RAW), but simple callback connection were changed or dropped. One of our current solutions - Mantis Vision (MV) SDK Camera S/W Interface – Cont. JAVA SDK (.jar) NATIVE SDK (.so) JAVA c/c++ jni
  • 25. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Android HAL bridges the gap between hardware and software. It allows the Android application/framework to communicate with the hardware specific device drivers. For Android application, HAL provides API’s through which service can place a request to device. And HAL uses functions provided by the lower layer Linux system to service the request from the android framework. HAL is a c/c++ layer which is a vendor specific implementation. About HAL
  • 26. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL There are two different types of Android HAL architecture:  First one is the legacy Android HAL which looks similar to library implementation.  Second one gives the complete abstraction and control over the device vendor. Android HAL implementation looks similar to a Linux device driver. Most of the Vendor specific implementations can be done in Android HAL rather than the driver. So that license difference between the driver (Open source license GPL) and the HAL (Apache License) will give more level of abstraction to vendor. HAL has structures which specify the HAL type, Module type, version detail, and a set of function callbacks (methods) which are registered to android framework layer.  For example if a service from android framework needs data from a sensor device, the service will make a call to corresponding function in sensor HAL which in turn will talks directly with Linux device driver.  The driver will trigger the sensor driver and deliver the data back to the HAL so it can be passed back to Android application. The HAL module is compiled into a shared object that is dynamically loaded at runtime when needed. HAL Architecture
  • 27. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL Device Driver  Linux has predefined system calls which can be used by the user space application to perform the operation on hardware. Android kernel Patches  There are limitation in the Linux kernel, that required patches to make it more powerful for android.  Some patches can be found in security, networking, IPC, Power management. Android Device Drivers  Device drivers written for Android hardware platforms can not get merged into the main kernel tree because they have dependencies on code that only lives in Google’s kernel tree, causing it to fail to build in the kernel.org tree.  Linux device drivers will also work on android but it will lack some functionality which is specific to android. Android Specific Device Drivers  Device drivers related to android which are integrated with Linux staging folder (e.g. Low Memory Killer)  Some of the device drivers which are specific to android are not merged with linux (e.g. Binder) Device Drivers
  • 28. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL And what about the future to come?
  • 29. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL developing a unified service that should run on any targeted Arm platform (Projector driver service) Allow RAW camera processing without being constrained to use color ISP (RDI). Been able to access the hardware correctly without being limited by OEM open API (Google Tango API not allowing us to trigger our laser and get RAW data). Ability to secure CPUGPU affinity as will be required when other developers will run their code as well in parallel. Expose some configuration parameters of the depth decoding process without "opening" the complete parameters to everybody (our use of encrypted config + the additional cfg parameters that are not encrypted). How to synchronize 3D camera with other host sensors (e.g. IMU & Temperature sensors) Challenges
  • 30. MANTIS VISION PROPRIETARY & CONFIDENTIALMANTIS VISION PROPRIETARY & CONFIDENTIAL And if you are having a good understanding how to cope with these kind of challenges – we are looking for you...
  • 31. MANTIS VISION PROPRIETARY & CONFIDENTIAL Thank You Tomer Kimhi, VP R&D TomerK@mantis-vision.com (Time for Demos…)