VINS-Fusion, VINS-Fisheye, OpenVINS, EnVIO, ROVIO, S-MSCKF, ORB-SLAM2, NVIDIA Elbrus application of different sets of cameras and imu on different board including desktop and Jetson boards
BSD 3-Clause "New" or "Revised" License
495
stars
87
forks
source link
whats the difference between cpu version and gpu version? how to choose from them? #10
Hi. sorry for late. CPU version only consumes CPU to solve optimization with
Ceres
solver. It also utilizes CPU to process image things withOpenCV
.GPU version also consumes only CPU to solve optimization with
Ceres
. But it utilizes GPU to process image things withOpenCV
withCUDA
enabled.Thanks.