mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 09:30:25 +08:00
SuperPoint: return at minimum 2 features or 0 (fixed crash when only one feature). Python: added main python instance from Rtabmap object (to get python instancied once for ROS). MultiSessionWidget: Fixed layout warning. Memory::computeTransform() avoid re-instanciating RegistrationVis when Reg/Strategy=1 for guess transform (to fix PyMatcher re-initialized every time). CMake: added video module to opencv required components.
This commit is contained in:
@@ -57,9 +57,9 @@ MultiSessionLocWidget::MultiSessionLocWidget(
|
||||
|
||||
// setup layout
|
||||
this->setLayout(new QHBoxLayout());
|
||||
QVBoxLayout * vLayout = new QVBoxLayout(this);
|
||||
QVBoxLayout * vLayout = new QVBoxLayout();
|
||||
vLayout->addWidget(imageView_, 1);
|
||||
QHBoxLayout * hLayout = new QHBoxLayout(this);
|
||||
QHBoxLayout * hLayout = new QHBoxLayout();
|
||||
hLayout->addWidget(resetbutton_, 0);
|
||||
hLayout->addWidget(totalLocProgressBar_, 1);
|
||||
vLayout->addLayout(hLayout, 0);
|
||||
|
||||
Reference in New Issue
Block a user