SlideShare a Scribd company logo
Optimizing Real-Time SLAM
Performance for Autonomous
Robots with GPU Acceleration
Naitik Nakrani
Ph.D., Solution Architect Manager
Einfochips, India
robotics@einfochips.com
Optimizing real-time SLAM performance for
autonomous robots with GPU acceleration
© 2025 Einfochips (An Arrow Company) 2
Introduction
Background
and
motivation
Various state-
of-art SLAM
Brief about the
RTAB-Map
GPU
acceleration in
RTAB-Map
Algorithm
overview
Experimental
setup and
results
Q&A
Outline
Introduction
© 2025 Einfochips (An Arrow Company) 3
SLAM is simultaneous localization and mapping
•Localization: Estimating the robot’s position and
orientation within the environment.
•Mapping: Creating a spatial map of the surroundings using
sensors (e.g., LiDAR, cameras).
Key components:
•Autonomous vehicles
•Robotics (e.g., vacuum cleaners, drones)
•AR/VR systems
Applications:
Where am I ?
What does the
environment look
like?
Objective: To reduce the processing time by leveraging hardware acceleration
Background and motivation
There are several challenges that SLAM faces in real time:
• Large scale and long-term
• Processing time for each frame
• Odometry drift
• Environmental variations
• Kidnapped robot problem
• No navigation support
• Dynamic obstacle
© 2025 Einfochips (An Arrow Company) 4
Various state-of-the-art SLAM
© 2025 Einfochips (An Arrow Company) 5
Input sources Outputs
Camera Lidar
Odom Pose
Occupancy Point
Cloud
Stereo RGB-D Multi 2D 3D 2D 3D
GMapping ✓ ✓ ✓ ✓
Hector SLAM ✓ ✓ ✓
ETHZASL-ICP ✓ ✓ ✓ ✓ ✓ Dense
Karto SLAM ✓ ✓ ✓ ✓
Cartographer ✓ ✓ ✓ ✓ ✓ Dense
BLAM ✓ ✓ Dense
VINS-Mono ✓
ORB-SLAM2 ✓ ✓
S-PTAM ✓ ✓ Sparse
DVO-SLAM ✓ ✓
MCPTAM ✓ ✓ ✓ Sparse
RGBDSLAMv2 ✓ ✓ ✓ ✓ Dense
RTAB-Map ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ Dense
https://arxiv.org/abs/2403.06341
Brief about RTAB - Map
RTAB-Map is an open-source framework for real-time
Simultaneous Localization and Mapping (SLAM) with loop
closure detection
© 2025 Einfochips (An Arrow Company) 6
https://link.springer.com/chapter/10.1007/978-3-030-75472-3_7
https://link.springer.com/chapter/10.1007/978-3-030-75472-3_7
• Multi-sensor integration
• Appearance-based approach
• Robust localization
• 2D/3D occupancy map generation
• Multi-session mapping (kidnapped robot problem)
• ROS compatible
It has features like
RTAB - Map
LTM
STM
Synchronization
Loop Closure and
Proximity Detection
Graph
Optimization
Global Map
Assembling
Occupancy
Grid Map
This talk focuses on RTAB-Map with pointcloud data from ToF as
pointcloud is computationally heavy data.
GPU acceleration in RTAB - Map
© 2025 Einfochips (An Arrow Company) 7
RTAB - Map
LTM
STM
Synchronization
Loop Closure and
Proximity Detection
Graph
Optimization
Global Map
Assembling
Occupancy
Grid Map
GPU acceleration in RTAB - Map
© 2025 Einfochips (An Arrow Company) 8
RTAB - Map
LTM
STM
Synchronization
Loop Closure and
Proximity Detection
Graph
Optimization
Global Map
Assembling
Occupancy
Grid Map
Computationally
heavy
Front
end
GPU acceleration in RTAB - Map
© 2025 Einfochips (An Arrow Company) 9
Computationally
heavy
RTAB - Map
LTM
STM
Synchronization
Loop Closure and Proximity
Detection
Graph Optimization
Global Map Assembling
Occupancy
Grid Map
Back end
Algorithm overview
© 2025 Einfochips (An Arrow Company) 10
What is STM ?
© 2025 Einfochips (An Arrow Company) 11
Filtering and
Ground
Segmentation
Laser Scan
data?
Grid/From
Depth
Depth Image
to Point Cloud
3D Ray Tracing
3D Local
Occupancy Grid
Grid/RayTracing
Grid/3D Projection
Grid/RayTracing
2D Ray Tracing
2D Local
Occupancy Grid
Point Cloud
topic?
false
false
false
false
true
true
true
true
yes
no
end
no
yes
STM is RTAB-
Map block that
performs data
segmentation
and generates
occupancy
map
https://arxiv.org/abs/2403.06341
Inside of filtering and ground segmentation
© 2025 Einfochips (An Arrow Company) 12
Segmentation is the process
of dividing a pointcloud into
smaller, meaningful segments
or clusters.​
RTAB-Map uses point cloud
library (PCL) to segment a
frame of pointcloud using
Euclidean cluster extraction
method.
A point in
space P
Pick a point other
than in Q
KD-tree
Get k nearest
points to P
Distance <
threshold
No increase in
elements in Q
Clustering in
the pointset Q
End
Yes
No
Yes
Pointcloud
Executes on
CPU
https://arxiv.org/abs/2403.06341
Example of a Pointcloud segmentation
© 2025 Einfochips (An Arrow Company) 13
Input Output
Proposed approach
© 2025 Einfochips (An Arrow Company) 14
KD-tree is efficient data structure for
organizing point cloud but its computationally
heavy.
A GPU based Octree was implemented
This approach allows us to transfer the
computationally heavy pointcloud
segmentation of each data frame from CPU to
GPU.
A point in
space P
Pick a point other
than in Q
KD-tree
Get k nearest
points to P
Distance <
threshold
No increase in
elements in Q
Clustering in
the pointset Q
End
Yes
No
Yes
Pointcloud
Octree
Experimental setup and results
© 2025 Einfochips (An Arrow Company) 15
Experimental setup
© 2025 Einfochips (An Arrow Company) 16
Dataset
EKF based
Odometry
ToF
Pointcloud
ROS2 Humble,
Jetpack 5.1.2,
CUDA 11.4,
Containerized docker
A ROS2 based RTAB-Map pipeline for evaluation
© 2025 Einfochips (An Arrow Company) 17
ToF
camera
node
RTAB-Map
Pointcloud
XYZ node
RTAB-Map
node
EKF Odometry
Depth
Camera info
Point Cloud
Occupancy
Grid Map
Frame-per-second
Evaluation criteria
Analysis and results
© 2025 Einfochips (An Arrow Company) 18
Platform Method
Segmentation
Execution Time
(ms)
Total RTAB-
Map node
execution
time (ms)
Orin AGX CPU 242 398
GPU 56 182
GPU-DR 26 102
Orin Nano CPU 577 667
GPU 367 454
GPU-DR 113 295
2.22
1.5
5.5
2.2
10
3.4
FPS
Methods
CPU GPU Data Reduction
• Input pointcloud size is 512 x 512 at 18 FPS.
• For GPU-Data reduction, input pointcloud frame is cropped
20% and 10% from top and bottom, and decimated by factor 2
Max CPU freq Max GPU freq
Orin AGX 2.2 GHz 1.3 GHz
Orin Nano 1.5 GHz 1.02 GHz
Analysis and results - map comparison vs FPS
© 2025 Einfochips (An Arrow Company) 19
Orin AGX
Orin Nano
2.22 5.5 10
3.4
2.2
1.5
• For long-term SLAM, ideally SLAM should be performed in real-time, but practically it is
challenging.
• We managed to reduce the processing time as low as possible for each pointcloud frame so that
overall map generating rate for RTAB-Map could be increased on a given edge platform.
• Results show that by using octree and data reduction, the overall map generating rate (FPS) was
increased by 4.5x and 2.25x for NVIDIA’s Orin AGX and Orin Nano platforms, respectively.
Conclusion
© 2025 Einfochips (An Arrow Company) 20
2
1
3
• ROS2 Humble ROS 2 Documentation — ROS 2
Documentation: Humble documentation
• RTAB-Map GitHub -
https://github.com/introlab/rtabmap
• PCL - GitHub - PointCloudLibrary/pcl: Point Cloud
Library (PCL)
• https://arxiv.org/abs/2403.06341
• https://link.springer.com/chapter/10.1007/978-3-
030-75472-3_7
• https://www.researchgate.net/publication/37716
5321_Extraction_of_Feature_Information_from_P
oint_Cloud_of_Large_Volume_Steel_Truss_Memb
ers
2025 Embedded Vision Summit
EInfochips
Booth # 802
robotics@einfochips.com
At the same time, you can also attend our talk
sharing valuable insights on
“Efficiently Registering Depth and RGB Images”
- Wednesday, May 21: 4:50 pm - 5:20 pm
© 2025 Einfochips (An Arrow Company) 21
Resources
Q & A
© 2025 Einfochips (An Arrow Company) 22

More Related Content

PDF
“LLMs and VLMs for Regulatory Compliance, Quality Control and Safety Applicat...
PDF
“Simplifying Portable Computer Vision with OpenVX 2.0,” a Presentation from AMD
PDF
“Quantization Techniques for Efficient Deployment of Large Language Models: A...
PDF
“Introduction to Data Types for AI: Trade-Offs and Trends,” a Presentation fr...
PDF
“Introduction to Radar and Its Use for Machine Perception,” a Presentation fr...
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
“LLMs and VLMs for Regulatory Compliance, Quality Control and Safety Applicat...
“Simplifying Portable Computer Vision with OpenVX 2.0,” a Presentation from AMD
“Quantization Techniques for Efficient Deployment of Large Language Models: A...
“Introduction to Data Types for AI: Trade-Offs and Trends,” a Presentation fr...
“Introduction to Radar and Its Use for Machine Perception,” a Presentation fr...
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...

More from Edge AI and Vision Alliance (20)

PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
PDF
“ONNX and Python to C++: State-of-the-art Graph Compilation,” a Presentation ...
PDF
“Beyond the Demo: Turning Computer Vision Prototypes into Scalable, Cost-effe...
PDF
“Running Accelerated CNNs on Low-power Microcontrollers Using Arm Ethos-U55, ...
PDF
“Scaling i.MX Applications Processors’ Native Edge AI with Discrete AI Accele...
PDF
“A Re-imagination of Embedded Vision System Design,” a Presentation from Imag...
PDF
“MPU+: A Transformative Solution for Next-Gen AI at the Edge,” a Presentation...
PDF
“Evolving Inference Processor Software Stacks to Support LLMs,” a Presentatio...
PDF
“Efficiently Registering Depth and RGB Images,” a Presentation from eInfochips
PDF
“How to Right-size and Future-proof a Container-first Edge AI Infrastructure,...
PDF
“Image Tokenization for Distributed Neural Cascades,” a Presentation from Goo...
PDF
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
PDF
“Bridging the Gap: Streamlining the Process of Deploying AI onto Processors,”...
PDF
“From Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
PDF
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
PDF
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
PDF
“Solving Tomorrow’s AI Problems Today with Cadence’s Newest Processor,” a Pre...
PDF
“State-space Models vs. Transformers for Ultra-low-power Edge AI,” a Presenta...
PDF
“How Qualcomm Is Powering AI-driven Multimedia at the Edge,” a Presentation f...
PDF
“OAAX: One Standard for AI Vision on Any Compute Platform,” a Presentation fr...
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
“ONNX and Python to C++: State-of-the-art Graph Compilation,” a Presentation ...
“Beyond the Demo: Turning Computer Vision Prototypes into Scalable, Cost-effe...
“Running Accelerated CNNs on Low-power Microcontrollers Using Arm Ethos-U55, ...
“Scaling i.MX Applications Processors’ Native Edge AI with Discrete AI Accele...
“A Re-imagination of Embedded Vision System Design,” a Presentation from Imag...
“MPU+: A Transformative Solution for Next-Gen AI at the Edge,” a Presentation...
“Evolving Inference Processor Software Stacks to Support LLMs,” a Presentatio...
“Efficiently Registering Depth and RGB Images,” a Presentation from eInfochips
“How to Right-size and Future-proof a Container-first Edge AI Infrastructure,...
“Image Tokenization for Distributed Neural Cascades,” a Presentation from Goo...
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
“Bridging the Gap: Streamlining the Process of Deploying AI onto Processors,”...
“From Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
“Solving Tomorrow’s AI Problems Today with Cadence’s Newest Processor,” a Pre...
“State-space Models vs. Transformers for Ultra-low-power Edge AI,” a Presenta...
“How Qualcomm Is Powering AI-driven Multimedia at the Edge,” a Presentation f...
“OAAX: One Standard for AI Vision on Any Compute Platform,” a Presentation fr...
Ad

Recently uploaded (20)

PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Approach and Philosophy of On baking technology
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
cuic standard and advanced reporting.pdf
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Modernizing your data center with Dell and AMD
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Encapsulation theory and applications.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
A Presentation on Artificial Intelligence
PPT
Teaching material agriculture food technology
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
20250228 LYD VKU AI Blended-Learning.pptx
Approach and Philosophy of On baking technology
Mobile App Security Testing_ A Comprehensive Guide.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Encapsulation_ Review paper, used for researhc scholars
The Rise and Fall of 3GPP – Time for a Sabbatical?
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
cuic standard and advanced reporting.pdf
NewMind AI Monthly Chronicles - July 2025
Advanced methodologies resolving dimensionality complications for autism neur...
Modernizing your data center with Dell and AMD
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Encapsulation theory and applications.pdf
Chapter 3 Spatial Domain Image Processing.pdf
A Presentation on Artificial Intelligence
Teaching material agriculture food technology
Per capita expenditure prediction using model stacking based on satellite ima...
MYSQL Presentation for SQL database connectivity
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Ad

“Optimizing Real-time SLAM Performance for Autonomous Robots with GPU Acceleration,” a Presentation from eInfochips

  • 1. Optimizing Real-Time SLAM Performance for Autonomous Robots with GPU Acceleration Naitik Nakrani Ph.D., Solution Architect Manager Einfochips, India robotics@einfochips.com
  • 2. Optimizing real-time SLAM performance for autonomous robots with GPU acceleration © 2025 Einfochips (An Arrow Company) 2 Introduction Background and motivation Various state- of-art SLAM Brief about the RTAB-Map GPU acceleration in RTAB-Map Algorithm overview Experimental setup and results Q&A Outline
  • 3. Introduction © 2025 Einfochips (An Arrow Company) 3 SLAM is simultaneous localization and mapping •Localization: Estimating the robot’s position and orientation within the environment. •Mapping: Creating a spatial map of the surroundings using sensors (e.g., LiDAR, cameras). Key components: •Autonomous vehicles •Robotics (e.g., vacuum cleaners, drones) •AR/VR systems Applications: Where am I ? What does the environment look like?
  • 4. Objective: To reduce the processing time by leveraging hardware acceleration Background and motivation There are several challenges that SLAM faces in real time: • Large scale and long-term • Processing time for each frame • Odometry drift • Environmental variations • Kidnapped robot problem • No navigation support • Dynamic obstacle © 2025 Einfochips (An Arrow Company) 4
  • 5. Various state-of-the-art SLAM © 2025 Einfochips (An Arrow Company) 5 Input sources Outputs Camera Lidar Odom Pose Occupancy Point Cloud Stereo RGB-D Multi 2D 3D 2D 3D GMapping ✓ ✓ ✓ ✓ Hector SLAM ✓ ✓ ✓ ETHZASL-ICP ✓ ✓ ✓ ✓ ✓ Dense Karto SLAM ✓ ✓ ✓ ✓ Cartographer ✓ ✓ ✓ ✓ ✓ Dense BLAM ✓ ✓ Dense VINS-Mono ✓ ORB-SLAM2 ✓ ✓ S-PTAM ✓ ✓ Sparse DVO-SLAM ✓ ✓ MCPTAM ✓ ✓ ✓ Sparse RGBDSLAMv2 ✓ ✓ ✓ ✓ Dense RTAB-Map ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ ✓ Dense https://arxiv.org/abs/2403.06341
  • 6. Brief about RTAB - Map RTAB-Map is an open-source framework for real-time Simultaneous Localization and Mapping (SLAM) with loop closure detection © 2025 Einfochips (An Arrow Company) 6 https://link.springer.com/chapter/10.1007/978-3-030-75472-3_7 https://link.springer.com/chapter/10.1007/978-3-030-75472-3_7 • Multi-sensor integration • Appearance-based approach • Robust localization • 2D/3D occupancy map generation • Multi-session mapping (kidnapped robot problem) • ROS compatible It has features like RTAB - Map LTM STM Synchronization Loop Closure and Proximity Detection Graph Optimization Global Map Assembling Occupancy Grid Map This talk focuses on RTAB-Map with pointcloud data from ToF as pointcloud is computationally heavy data.
  • 7. GPU acceleration in RTAB - Map © 2025 Einfochips (An Arrow Company) 7 RTAB - Map LTM STM Synchronization Loop Closure and Proximity Detection Graph Optimization Global Map Assembling Occupancy Grid Map
  • 8. GPU acceleration in RTAB - Map © 2025 Einfochips (An Arrow Company) 8 RTAB - Map LTM STM Synchronization Loop Closure and Proximity Detection Graph Optimization Global Map Assembling Occupancy Grid Map Computationally heavy Front end
  • 9. GPU acceleration in RTAB - Map © 2025 Einfochips (An Arrow Company) 9 Computationally heavy RTAB - Map LTM STM Synchronization Loop Closure and Proximity Detection Graph Optimization Global Map Assembling Occupancy Grid Map Back end
  • 10. Algorithm overview © 2025 Einfochips (An Arrow Company) 10
  • 11. What is STM ? © 2025 Einfochips (An Arrow Company) 11 Filtering and Ground Segmentation Laser Scan data? Grid/From Depth Depth Image to Point Cloud 3D Ray Tracing 3D Local Occupancy Grid Grid/RayTracing Grid/3D Projection Grid/RayTracing 2D Ray Tracing 2D Local Occupancy Grid Point Cloud topic? false false false false true true true true yes no end no yes STM is RTAB- Map block that performs data segmentation and generates occupancy map https://arxiv.org/abs/2403.06341
  • 12. Inside of filtering and ground segmentation © 2025 Einfochips (An Arrow Company) 12 Segmentation is the process of dividing a pointcloud into smaller, meaningful segments or clusters.​ RTAB-Map uses point cloud library (PCL) to segment a frame of pointcloud using Euclidean cluster extraction method. A point in space P Pick a point other than in Q KD-tree Get k nearest points to P Distance < threshold No increase in elements in Q Clustering in the pointset Q End Yes No Yes Pointcloud Executes on CPU https://arxiv.org/abs/2403.06341
  • 13. Example of a Pointcloud segmentation © 2025 Einfochips (An Arrow Company) 13 Input Output
  • 14. Proposed approach © 2025 Einfochips (An Arrow Company) 14 KD-tree is efficient data structure for organizing point cloud but its computationally heavy. A GPU based Octree was implemented This approach allows us to transfer the computationally heavy pointcloud segmentation of each data frame from CPU to GPU. A point in space P Pick a point other than in Q KD-tree Get k nearest points to P Distance < threshold No increase in elements in Q Clustering in the pointset Q End Yes No Yes Pointcloud Octree
  • 15. Experimental setup and results © 2025 Einfochips (An Arrow Company) 15
  • 16. Experimental setup © 2025 Einfochips (An Arrow Company) 16 Dataset EKF based Odometry ToF Pointcloud ROS2 Humble, Jetpack 5.1.2, CUDA 11.4, Containerized docker
  • 17. A ROS2 based RTAB-Map pipeline for evaluation © 2025 Einfochips (An Arrow Company) 17 ToF camera node RTAB-Map Pointcloud XYZ node RTAB-Map node EKF Odometry Depth Camera info Point Cloud Occupancy Grid Map Frame-per-second Evaluation criteria
  • 18. Analysis and results © 2025 Einfochips (An Arrow Company) 18 Platform Method Segmentation Execution Time (ms) Total RTAB- Map node execution time (ms) Orin AGX CPU 242 398 GPU 56 182 GPU-DR 26 102 Orin Nano CPU 577 667 GPU 367 454 GPU-DR 113 295 2.22 1.5 5.5 2.2 10 3.4 FPS Methods CPU GPU Data Reduction • Input pointcloud size is 512 x 512 at 18 FPS. • For GPU-Data reduction, input pointcloud frame is cropped 20% and 10% from top and bottom, and decimated by factor 2 Max CPU freq Max GPU freq Orin AGX 2.2 GHz 1.3 GHz Orin Nano 1.5 GHz 1.02 GHz
  • 19. Analysis and results - map comparison vs FPS © 2025 Einfochips (An Arrow Company) 19 Orin AGX Orin Nano 2.22 5.5 10 3.4 2.2 1.5
  • 20. • For long-term SLAM, ideally SLAM should be performed in real-time, but practically it is challenging. • We managed to reduce the processing time as low as possible for each pointcloud frame so that overall map generating rate for RTAB-Map could be increased on a given edge platform. • Results show that by using octree and data reduction, the overall map generating rate (FPS) was increased by 4.5x and 2.25x for NVIDIA’s Orin AGX and Orin Nano platforms, respectively. Conclusion © 2025 Einfochips (An Arrow Company) 20 2 1 3
  • 21. • ROS2 Humble ROS 2 Documentation — ROS 2 Documentation: Humble documentation • RTAB-Map GitHub - https://github.com/introlab/rtabmap • PCL - GitHub - PointCloudLibrary/pcl: Point Cloud Library (PCL) • https://arxiv.org/abs/2403.06341 • https://link.springer.com/chapter/10.1007/978-3- 030-75472-3_7 • https://www.researchgate.net/publication/37716 5321_Extraction_of_Feature_Information_from_P oint_Cloud_of_Large_Volume_Steel_Truss_Memb ers 2025 Embedded Vision Summit EInfochips Booth # 802 robotics@einfochips.com At the same time, you can also attend our talk sharing valuable insights on “Efficiently Registering Depth and RGB Images” - Wednesday, May 21: 4:50 pm - 5:20 pm © 2025 Einfochips (An Arrow Company) 21 Resources
  • 22. Q & A © 2025 Einfochips (An Arrow Company) 22