libviso2

所属分类:图形图像处理
开发工具:C/C++
文件大小:3256KB
下载次数:87
上传日期:2012-05-31 09:56:32
上 传 者Saiyan1980
说明:  视觉里程计的开源库,这是最新版(V2.0),使用起来很方便
(Open source library of visual odometry, which is the latest version (V2.0), easy to use)

文件列表:
CMakeLists.txt (455, 2012-02-13)
matlab\plotMatch.m (1461, 2012-02-02)
matlab\plotTrack.m (1068, 2012-02-02)
matlab\make.m (710, 2012-03-01)
src\demo.cpp (4330, 2012-02-13)
src\filter.cpp (20909, 2012-03-01)
src\matcher.cpp (52309, 2012-03-01)
src\matrix.cpp (23050, 2012-03-01)
src\reconstruction.cpp (11154, 2012-02-02)
src\triangle.cpp (390020, 2012-02-02)
src\viso.cpp (2889, 2012-03-01)
src\viso_mono.cpp (11410, 2012-03-01)
src\viso_stereo.cpp (10459, 2012-03-01)
src\filter.h (4019, 2012-02-13)
src\matcher.h (10699, 2012-03-01)
src\matrix.h (5068, 2012-02-02)
src\reconstruction.h (3629, 2012-02-07)
src\timer.h (2428, 2012-02-02)
src\triangle.h (21824, 2012-02-02)
src\viso.h (5134, 2012-03-01)
src\viso_mono.h (3691, 2012-03-01)
src\viso_stereo.h (3456, 2012-02-06)
img\I1_000000.png (293173, 2012-02-02)
img\I1_000001.png (293480, 2012-02-02)
img\I1_000002.png (293486, 2012-02-02)
img\I1_000003.png (293065, 2012-02-02)
img\I1_000004.png (292534, 2012-02-02)
img\I1_000005.png (292798, 2012-02-02)
img\I1_000006.png (293265, 2012-02-02)
img\I1c.png (282432, 2012-02-02)
img\I1p.png (284871, 2012-02-02)
img\I2c.png (281241, 2012-02-02)
img\I2p.png (283381, 2012-02-02)
matlab\demo_matching_flow.m (1585, 2012-02-07)
matlab\demo_matching_quad.m (1784, 2012-02-07)
matlab\demo_matching_stereo.m (1560, 2012-02-07)
matlab\demo_matching_tracking.m (1665, 2012-02-07)
matlab\demo_structure_from_motion.m (2587, 2012-03-01)
matlab\demo_viso_mono.m (1840, 2012-03-01)
... ...

#################################################################################### # Copyright 2012. All rights reserved. # # Institute of Measurement and Control Systems # # Karlsruhe Institute of Technology, Germany # # # # This file is part of libviso2. # # Authors: Andreas Geiger # # Please send any bugreports to geiger@kit.edu # # # # libviso2 is free software; you can redistribute it and/or modify it under the # # terms of the GNU General Public License as published by the Free Software # # Foundation; either version 2 of the License, or any later version. # # # # libviso2 is distributed in the hope that it will be useful, but WITHOUT ANY # # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A # # PARTICULAR PURPOSE. See the GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License along with # # libviso2; if not, write to the Free Software Foundation, Inc., 51 Franklin # # Street, Fifth Floor, Boston, MA 02110-1301, USA # #################################################################################### +++++++++++++++++++++++++++++++++++ + INTRODUCTION + +++++++++++++++++++++++++++++++++++ Libviso 2 (LIBrary for ViSual Odometry 2) is a cross-platfrom (Linux, Windows) C++ library with MATLAB wrappers for computing the 6 DOF motion of a moving stereo camera. Input is a sequence of rectified stereo images. Output is a 4x4 matrix which projects a point from the previous to the current camera coordinates. Version 2 now also supports visual odometry from monocular sequences, and the feature matching functions implement sparse stereo, scene flow and optical flow. For more details, please have a look at the corresponding publication. If you distribute a software that uses libviso, you have to distribute it under GPL with the source code. Another option is to contact us to purchase a commercial license. If you find this software useful or if you use this software for your research, we would be happy if you cite the following related publication: @INPROCEEDINGS{Geiger11, author = {Andreas Geiger and Julius Ziegler and Christoph Stiller}, title = {StereoScan: Dense 3d Reconstruction in Real-time}, booktitle = {IEEE Intelligent Vehicles Symposium}, year = {2011}, month = {June}, address = {Baden-Baden, Germany} } +++++++++++++++++++++++++++++++++++ + COMPILING MATLAB WRAPPERS + +++++++++++++++++++++++++++++++++++ Prerequisites needed for compiling libviso2: - Matlab (if you want to compile the matlab wrappers) - gcc or Visual Studio (if you want to include the code in your C++ project) If you want to use libviso directly from MATLAB you can easily do this by using the MATLAB wrappers provided. They also include some demo files for testing. In the MATLAB directory of libviso, simply run 'make.m' to generate the mex wrappers. (Run mex -setup before to choose your desired compiler) Now try to run the demo*.m files! For some of them you will need the Karlsruhe dataset from www.cvlibs.net. +++++++++++++++++++++++++++++++++++ + BUILDING A C++ LIBRARY + +++++++++++++++++++++++++++++++++++ Prerequisites needed for compiling and running the libviso2 demonstration tool via c++: - libpng (available at: http://www.libpng.org/pub/png/libpng.html) - libpng++ (available at: http://www.nongnu.org/pngpp/) - sequence 2010_03_09_drive_0019 (available at: http://www.cvlibs.net/) libpng and png++ are needed for reading the png input images. On a ubuntu box you can get them via apt: - sudo apt-get install libpng12-dev - sudo apt-get install libpng++-dev Linux: 1) Move to libviso2 root directory 2) Type 'cmake .' 3) Type 'make' 4) Run './viso2 path/to/sequence/2010_03_09_drive_0019' Windows: 1) Modify CMakefile according to your needs (libpng(++) must be found) 2) Start CMake GUI 3) Set directories to libviso2 root directory 4) Run configure, configure and generate 5) Open the resulting Visual Studio solution with Visual Studio 6) Switch to 'Release' mode and build all 9) Run 'viso2.exe path/to/sequence/2010_03_09_drive_0019' For more information on CMake, have a look at the CMake documentation. For more information on the usage of the library, have a look into the MATLAB wrappers, demo.cpp, viso.h, viso_stereo.h, viso_mono.h and matcher.h. Please send any feedback and bugreports to geiger@kit.edu Andreas Geiger

近期下载者

相关文件


收藏者