mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 09:30:25 +08:00
192 lines
4.9 KiB
C++
192 lines
4.9 KiB
C++
/*
|
|
Copyright (c) 2010-2014, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
* Neither the name of the Universite de Sherbrooke nor the
|
|
names of its contributors may be used to endorse or promote products
|
|
derived from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "rtabmap/core/Camera.h"
|
|
#include "rtabmap/core/CameraRGBD.h"
|
|
#include "rtabmap/core/CameraThread.h"
|
|
#include "rtabmap/utilite/ULogger.h"
|
|
#include "rtabmap/utilite/UConversion.h"
|
|
#include "rtabmap/gui/CalibrationDialog.h"
|
|
#include <QApplication>
|
|
|
|
void showUsage()
|
|
{
|
|
printf("\nUsage:\n"
|
|
"rtabmap-calibration [options]\n"
|
|
"Options:\n"
|
|
" --driver # Driver number to use: 0=USB camera, 1=OpenNI-PCL, 2=OpenNI2,\n"
|
|
" 3=Freenect, 4=OpenNI-CV, 5=OpenNI-CV-ASUS\n"
|
|
" --device # Device id\n\n");
|
|
exit(1);
|
|
}
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
ULogger::setType(ULogger::kTypeConsole);
|
|
ULogger::setLevel(ULogger::kInfo);
|
|
|
|
int driver = 0;
|
|
int device = 0;
|
|
for(int i=1; i<argc; ++i)
|
|
{
|
|
if(strcmp(argv[i], "--driver") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
driver = std::atoi(argv[i]);
|
|
if(driver < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "--device") == 0)
|
|
{
|
|
++i;
|
|
if(i < argc)
|
|
{
|
|
device = std::atoi(argv[i]);
|
|
if(device < 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
showUsage();
|
|
}
|
|
continue;
|
|
}
|
|
if(strcmp(argv[i], "--help") == 0)
|
|
{
|
|
showUsage();
|
|
}
|
|
printf("Unrecognized option : %s\n", argv[i]);
|
|
showUsage();
|
|
}
|
|
driver = atoi(argv[argc-1]);
|
|
if(driver < 0 || driver > 5)
|
|
{
|
|
UERROR("driver should be between 0 and 5.");
|
|
showUsage();
|
|
}
|
|
|
|
UINFO("Using driver %d", driver);
|
|
UINFO("Using device %d", device);
|
|
|
|
float imageRate = 1.0f;
|
|
rtabmap::Camera * cameraUsb = 0;
|
|
rtabmap::CameraRGBD * camera = 0;
|
|
if(driver == 0)
|
|
{
|
|
cameraUsb = new rtabmap::CameraVideo(device, imageRate);
|
|
}
|
|
else if(driver == 1)
|
|
{
|
|
camera = new rtabmap::CameraOpenni(uNumber2Str(device), imageRate);
|
|
}
|
|
else if(driver == 2)
|
|
{
|
|
if(!rtabmap::CameraOpenNI2::available())
|
|
{
|
|
UERROR("Not built with OpenNI2 support...");
|
|
exit(-1);
|
|
}
|
|
camera = new rtabmap::CameraOpenNI2(uNumber2Str(device), imageRate);
|
|
}
|
|
else if(driver == 3)
|
|
{
|
|
if(!rtabmap::CameraFreenect::available())
|
|
{
|
|
UERROR("Not built with Freenect support...");
|
|
exit(-1);
|
|
}
|
|
camera = new rtabmap::CameraFreenect(device, imageRate);
|
|
}
|
|
else if(driver == 4)
|
|
{
|
|
if(!rtabmap::CameraOpenNICV::available())
|
|
{
|
|
UERROR("Not built with OpenNI from OpenCV support...");
|
|
exit(-1);
|
|
}
|
|
camera = new rtabmap::CameraOpenNICV(false, imageRate);
|
|
}
|
|
else if(driver == 5)
|
|
{
|
|
if(!rtabmap::CameraOpenNICV::available())
|
|
{
|
|
UERROR("Not built with OpenNI from OpenCV support...");
|
|
exit(-1);
|
|
}
|
|
camera = new rtabmap::CameraOpenNICV(true, imageRate);
|
|
}
|
|
else
|
|
{
|
|
UFATAL("");
|
|
}
|
|
|
|
rtabmap::CameraThread * cameraThread = 0;
|
|
|
|
if(cameraUsb)
|
|
{
|
|
if(!cameraUsb->init())
|
|
{
|
|
printf("Camera init failed!\n");
|
|
delete cameraUsb;
|
|
exit(1);
|
|
}
|
|
cameraThread = new rtabmap::CameraThread(cameraUsb);
|
|
}
|
|
else if(camera)
|
|
{
|
|
if(!camera->init())
|
|
{
|
|
printf("Camera init failed!\n");
|
|
delete camera;
|
|
exit(1);
|
|
}
|
|
cameraThread = new rtabmap::CameraThread(camera);
|
|
}
|
|
|
|
QApplication app(argc, argv);
|
|
rtabmap::CalibrationDialog dialog;
|
|
dialog.registerToEventsManager();
|
|
|
|
dialog.show();
|
|
cameraThread->start();
|
|
app.exec();
|
|
cameraThread->join(true);
|
|
delete cameraThread;
|
|
}
|