mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 09:30:25 +08:00
Added tool to test RGB-D camera: rtabmap-rgbd_camera Fixed Freenect corrupted depth image (after some time) git-svn-id: http://rtabmap.googlecode.com/svn/trunk/rtabmap@1366 f169173b-cf89-36c8-b27e-44dbe73f0c83
574 lines
11 KiB
C++
574 lines
11 KiB
C++
|
|
#include <rtabmap/utilite/ULogger.h>
|
|
#include <rtabmap/utilite/UEventsManager.h>
|
|
#include <rtabmap/utilite/UFile.h>
|
|
#include <rtabmap/core/Odometry.h>
|
|
#include <rtabmap/gui/OdometryViewer.h>
|
|
#include <rtabmap/core/CameraThread.h>
|
|
#include <rtabmap/core/CameraRGBD.h>
|
|
#include <rtabmap/core/DBReader.h>
|
|
#include <QtGui/QApplication>
|
|
|
|
void showUsage()
|
|
{
|
|
printf("\nUsage:\n"
|
|
"odometryViewer [options]\n"
|
|
"Options:\n"
|
|
" -bow # Use bag-of-words odometry (default 0): 0=SURF, 1=SIFT\n"
|
|
" -bin Use binary odometry (FAST+BRIEF)\n"
|
|
" -icp Use ICP odometry\n"
|
|
"\n"
|
|
" -hz #.# Camera rate (default 0, 0 means as fast as the camera can)\n"
|
|
" -db \"input.db\" Use database instead of camera (recorded with rtabmap-dataRecorder)\n"
|
|
" -clouds # Maximum clouds shown (default 10, zero means inf)\n"
|
|
" -sec #.# Delay (seconds) before reading the database (if set)\n"
|
|
"\n"
|
|
" -in #.# Inliers maximum distance, features/ICP (default 0.005 m)\n"
|
|
" -max # Max features used for matching (default 0=inf)\n"
|
|
" -min # Minimum inliers to accept the transform (default 20)\n"
|
|
" -depth #.# Maximum features depth (default 5.0 m)\n"
|
|
" -i # RANSAC/ICP iterations (default 100)\n"
|
|
" -r #.# Words ratio (default 0.5)\n"
|
|
" -lu # Linear update (default 0.0 m)\n"
|
|
" -au # Angular update (default 0.0 radian)\n"
|
|
" -reset # Reset countdown (default 0 = disabled)\n"
|
|
"\n"
|
|
" -bin_brief_bytes # BRIEF bytes (default 32)\n"
|
|
" -bin_fast_thr # FAST threshold (default 30)\n"
|
|
" -bin_lsh Use nearest neighbor LSH (default brute force hamming)\n"
|
|
"\n"
|
|
" -d # ICP decimation (default 4)\n"
|
|
" -v # ICP voxel size (default 0.005)\n"
|
|
" -s # ICP samples (default 0, not used if voxel is set.)\n"
|
|
" -f #.# ICP fitness (default 0.01)\n"
|
|
"\n"
|
|
" -debug Log debug messages\n"
|
|
"\n"
|
|
"Examples:\n"
|
|
" odometryViewer -bow 0 SURF example\n"
|
|
" odometryViewer -bow 1 SIFT example\n"
|
|
" odometryViewer -bin -hz 10 FAST/BRIEF example\n"
|
|
" odometryViewer -icp -in 0.05 -i 30 ICP example\n");
|
|
exit(1);
|
|
}
|
|
|
|
int main (int argc, char * argv[])
|
|
{
|
|
ULogger::setType(ULogger::kTypeConsole);
|
|
ULogger::setLevel(ULogger::kInfo);
|
|
|
|
// parse arguments
|
|
float rate = 0.0;
|
|
std::string inputDatabase;
|
|
int odomType = 0; // 0=bow 1=bin 2=ICP
|
|
int bowType = 0;
|
|
float distance = 0.005;
|
|
int maxWords = 0;
|
|
int minInliers = 20;
|
|
float wordsRatio = 0.5;
|
|
float maxDepth = 5.0f;
|
|
int iterations = 100;
|
|
float linearUpdate = 0.0f;
|
|
float angularUpdate = 0.0f;
|
|
int resetCountdown = 0;
|
|
int decimation = 4;
|
|
float voxel = 0.005;
|
|
int samples = 10000;
|
|
float fitness = 0.01f;
|
|
int maxClouds = 10;
|
|
int briefBytes = 32;
|
|
int fastThr = 30;
|
|
bool useLSH = false;
|
|
float sec = 0.0f;
|
|
|
|
for(int i=1; i<argc; ++i)
|
|
{
|
|
if(strcmp(argv[i], "-bow") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
bowType = std::atoi(argv[i]);
|
|
odomType = 0;
|
|
if(bowType < 0 || bowType > 1)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-hz") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
rate = std::atof(argv[i]);
|
|
if(rate < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-db") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
inputDatabase = argv[i];
|
|
if(UFile::getExtension(inputDatabase).compare("db") != 0)
|
|
{
|
|
printf("Database path (%s) should end with \"db\" \n", inputDatabase.c_str());
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-clouds") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
maxClouds = std::atoi(argv[i]);
|
|
if(maxClouds < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-sec") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
sec = std::atof(argv[i]);
|
|
if(sec < 0.0f)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-in") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
distance = std::atof(argv[i]);
|
|
if(distance <= 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-max") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
maxWords = std::atoi(argv[i]);
|
|
if(maxWords < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-min") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
minInliers = std::atoi(argv[i]);
|
|
if(minInliers < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-depth") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
maxDepth = std::atof(argv[i]);
|
|
if(maxDepth < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-i") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
iterations = std::atoi(argv[i]);
|
|
if(iterations <= 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-r") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
wordsRatio = std::atof(argv[i]);
|
|
if(wordsRatio < 0.0f || wordsRatio > 1.0f)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-lu") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
linearUpdate = std::atof(argv[i]);
|
|
if(linearUpdate < 0.0f)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-au") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
angularUpdate = std::atof(argv[i]);
|
|
if(angularUpdate < 0.0f)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-reset") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
resetCountdown = std::atoi(argv[i]);
|
|
if(resetCountdown < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-d") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
decimation = std::atoi(argv[i]);
|
|
if(decimation < 1)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-v") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
voxel = std::atof(argv[i]);
|
|
if(voxel < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-s") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
samples = std::atoi(argv[i]);
|
|
if(samples < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-f") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
fitness = std::atof(argv[i]);
|
|
if(fitness < 0.0f)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-bin_brief_bytes") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
briefBytes = std::atoi(argv[i]);
|
|
if(briefBytes < 1)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-bin_fast_thr") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
fastThr = std::atoi(argv[i]);
|
|
if(fastThr < 1)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-bin_lsh") == 0)
|
|
{
|
|
useLSH = true;
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-bin") == 0)
|
|
{
|
|
odomType = 1;
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-icp") == 0)
|
|
{
|
|
odomType = 2;
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "-debug") == 0)
|
|
{
|
|
ULogger::setLevel(ULogger::kDebug);
|
|
continue;
|
|
}
|
|
|
|
printf("Unrecognized option : %s\n", argv[i]);
|
|
showUsage();
|
|
}
|
|
|
|
if(inputDatabase.size())
|
|
{
|
|
UINFO("Using database input \"%s\"", inputDatabase.c_str());
|
|
}
|
|
else
|
|
{
|
|
UINFO("Using OpenNI camera");
|
|
}
|
|
UINFO("Camera rate = %f Hz", rate);
|
|
UINFO("Maximum clouds shown = %d", maxClouds);
|
|
UINFO("Delay = %f s", sec);
|
|
UINFO("Odometry used = %s", odomType==0?bowType==0?"Bag-of-words SURF":"Bag-of-words SIFT":odomType==1?"Binary (FAST+BRIEF)":"ICP");
|
|
UINFO("Inlier/ICP maximum correspondences distance = %f", distance);
|
|
UINFO("Max features = %d", maxWords);
|
|
UINFO("Min inliers = %d", minInliers);
|
|
UINFO("RANSAC/ICP iterations = %d", iterations);
|
|
UINFO("Words ratio = %f", wordsRatio);
|
|
UINFO("Max depth = %f", maxDepth);
|
|
UINFO("Linear update = %f", linearUpdate);
|
|
UINFO("Angular update = %f", angularUpdate);
|
|
UINFO("Reset odometry coutdown = %d", resetCountdown);
|
|
UINFO("Cloud decimation = %d", decimation);
|
|
UINFO("Cloud voxel size = %f", voxel);
|
|
UINFO("Cloud samples = %d", samples);
|
|
UINFO("Cloud fitness = %f", fitness);
|
|
UINFO("Binary BRIEF bytes = %d", briefBytes);
|
|
UINFO("Binary FAST threshold = %f", fastThr);
|
|
UINFO("Binary LSH = %f", useLSH?"true":"false");
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
rtabmap::Odometry * odom = 0;
|
|
|
|
if(odomType == 0)
|
|
{
|
|
odom = new rtabmap::OdometryBOW(
|
|
bowType,
|
|
distance,
|
|
maxWords,
|
|
minInliers,
|
|
iterations,
|
|
wordsRatio,
|
|
maxDepth,
|
|
linearUpdate,
|
|
angularUpdate,
|
|
resetCountdown);
|
|
}
|
|
else if(odomType == 1)
|
|
{
|
|
odom = new rtabmap::OdometryBinary(
|
|
distance,
|
|
maxWords,
|
|
minInliers,
|
|
iterations,
|
|
wordsRatio,
|
|
maxDepth,
|
|
linearUpdate,
|
|
angularUpdate,
|
|
resetCountdown,
|
|
briefBytes,
|
|
fastThr,
|
|
true,
|
|
!useLSH);
|
|
}
|
|
else // ICP
|
|
{
|
|
odom = new rtabmap::OdometryICP(
|
|
decimation,
|
|
voxel,
|
|
samples,
|
|
distance,
|
|
iterations,
|
|
fitness,
|
|
maxDepth,
|
|
linearUpdate,
|
|
angularUpdate,
|
|
resetCountdown);
|
|
}
|
|
rtabmap::OdometryThread odomThread(odom);
|
|
rtabmap::OdometryViewer odomViewer(maxClouds, 2, 0.0);
|
|
UEventsManager::addHandler(&odomThread);
|
|
UEventsManager::addHandler(&odomViewer);
|
|
|
|
odomViewer.setWindowTitle("Odometry viewer");
|
|
odomViewer.setMinimumWidth(800);
|
|
odomViewer.setMinimumHeight(500);
|
|
odomViewer.showNormal();
|
|
|
|
app.processEvents();
|
|
|
|
if(inputDatabase.size())
|
|
{
|
|
rtabmap::DBReader camera(inputDatabase, rate, true, sec);
|
|
if(camera.init())
|
|
{
|
|
odomThread.start();
|
|
camera.start();
|
|
|
|
app.exec();
|
|
|
|
camera.kill();
|
|
odomThread.join(true);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
rtabmap::CameraThread camera(new rtabmap::CameraOpenni("", rate, rtabmap::Transform(0,0,1,0, -1,0,0,0, 0,-1,0,0)));
|
|
if(camera.init())
|
|
{
|
|
odomThread.start();
|
|
camera.start();
|
|
|
|
app.exec();
|
|
|
|
camera.kill();
|
|
odomThread.join(true);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|