mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 09:30:25 +08:00
Memory management tested on RGBD SLAM Fixed some crashes New parameter RGBD/LocalLoopDetectionMaxDiffID New parameter LccIcp2/VoxelSize Updated parameter LccIcp/Type (added "No ICP" type) Updated parameter kLccBowMinInliers (inliers minimum reduced to 1) TORO optimization: The graph root is explicitly defined as the last node added (fixed a TORO crash when a root could not be found) TORO optimization: only one constraint between neighbors and loop closures TORO optimization: added initial tree guess Map correction/Map transform: now only used in localization mode (map correction is always identity on mapping mode) New statistics: local loop space diff, last loop closure parent and child ids Database: Fixed empty signatures with no poses loaded ICP: fixed transform multiplication order Dump memory: added 3D words DatabaseViewer: added Export option (added ExportDialog object) DataRecorder: Option recording in RAM or Hard drive GUI: added a dock widget (MapVisibilityWidget) to change visibility of nodes in the 3D map GUI: fixed progress bar step count when generating the map Menu option: generate TORO graph (full/current map, optimized/not optimized) Menu option: download map (full/current map, optimized/not optimized) Preferences: added Reset all settings button Preferences: A QGroupBox can be a boolean parameter git-svn-id: http://rtabmap.googlecode.com/svn/trunk/rtabmap@1066 f169173b-cf89-36c8-b27e-44dbe73f0c83
49 lines
968 B
C++
49 lines
968 B
C++
/*
|
|
* DataRecorder.h
|
|
*
|
|
* Created on: 2013-10-30
|
|
* Author: Mathieu
|
|
*/
|
|
|
|
#ifndef DATARECORDER_H_
|
|
#define DATARECORDER_H_
|
|
|
|
#include "rtabmap/gui/RtabmapGuiExp.h" // DLL export/import defines
|
|
|
|
#include <rtabmap/utilite/UEventsHandler.h>
|
|
#include <QtGui/QWidget>
|
|
#include <rtabmap/core/Image.h>
|
|
#include <rtabmap/utilite/UTimer.h>
|
|
|
|
namespace rtabmap {
|
|
|
|
class Memory;
|
|
class ImageView;
|
|
|
|
class RTABMAPGUI_EXP DataRecorder : public QWidget, public UEventsHandler
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DataRecorder(QWidget * parent = 0);
|
|
bool init(const QString & path, bool recordInRAM = true);
|
|
|
|
void close();
|
|
|
|
virtual ~DataRecorder();
|
|
|
|
public slots:
|
|
void addData(const rtabmap::Image & image);
|
|
void showImage(const rtabmap::Image & image);
|
|
protected:
|
|
void handleEvent(UEvent * event);
|
|
|
|
private:
|
|
Memory * memory_;
|
|
ImageView* imageView_;
|
|
UTimer timer_;
|
|
int dataQueue_;
|
|
};
|
|
|
|
} /* namespace rtabmap */
|
|
#endif /* DATARECORDER_H_ */
|