ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
match_matrix_widget.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #pragma once
9 
10 #include "ui/image_viewer_widget.h"
11 #include "util/option_manager.h"
12 
13 namespace colmap {
14 
15 // Widget to visualize match matrix.
17 public:
18  MatchMatrixWidget(QWidget* parent, OptionManager* options);
19 
20  void Show();
21 
22 private:
23  OptionManager* options_;
24 };
25 
26 } // namespace colmap
MatchMatrixWidget(QWidget *parent, OptionManager *options)