| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifndef COLMAP_SRC_UI_MAIN_WINDOW_H_ |
| | #define COLMAP_SRC_UI_MAIN_WINDOW_H_ |
| |
|
| | #include <QtCore> |
| | #include <QtGui> |
| | #include <QtWidgets> |
| |
|
| | #include "base/reconstruction.h" |
| | #include "controllers/incremental_mapper.h" |
| | #include "ui/automatic_reconstruction_widget.h" |
| | #include "ui/bundle_adjustment_widget.h" |
| | #include "ui/database_management_widget.h" |
| | #include "ui/dense_reconstruction_widget.h" |
| | #include "ui/feature_extraction_widget.h" |
| | #include "ui/feature_matching_widget.h" |
| | #include "ui/license_widget.h" |
| | #include "ui/log_widget.h" |
| | #include "ui/match_matrix_widget.h" |
| | #include "ui/model_viewer_widget.h" |
| | #include "ui/project_widget.h" |
| | #include "ui/reconstruction_manager_widget.h" |
| | #include "ui/reconstruction_options_widget.h" |
| | #include "ui/reconstruction_stats_widget.h" |
| | #include "ui/render_options_widget.h" |
| | #include "ui/undistortion_widget.h" |
| | #include "util/bitmap.h" |
| |
|
| | namespace colmap { |
| |
|
| | class MainWindow : public QMainWindow { |
| | public: |
| | explicit MainWindow(const OptionManager& options); |
| |
|
| | void ImportReconstruction(const std::string& path); |
| |
|
| | protected: |
| | void closeEvent(QCloseEvent* event); |
| |
|
| | private: |
| | friend class AutomaticReconstructionWidget; |
| | friend class BundleAdjustmentWidget; |
| | friend class DenseReconstructionWidget; |
| |
|
| | void CreateWidgets(); |
| | void CreateActions(); |
| | void CreateMenus(); |
| | void CreateToolbar(); |
| | void CreateStatusbar(); |
| | void CreateControllers(); |
| |
|
| | void ProjectNew(); |
| | bool ProjectOpen(); |
| | void ProjectEdit(); |
| | void ProjectSave(); |
| | void ProjectSaveAs(); |
| | void Import(); |
| | void ImportFrom(); |
| | void Export(); |
| | void ExportAll(); |
| | void ExportAs(); |
| | void ExportAsText(); |
| |
|
| | void FeatureExtraction(); |
| | void FeatureMatching(); |
| | void DatabaseManagement(); |
| |
|
| | void AutomaticReconstruction(); |
| |
|
| | void ReconstructionStart(); |
| | void ReconstructionStep(); |
| | void ReconstructionPause(); |
| | void ReconstructionReset(); |
| | void ReconstructionOptions(); |
| | void ReconstructionFinish(); |
| | void ReconstructionNormalize(); |
| | bool ReconstructionOverwrite(); |
| |
|
| | void BundleAdjustment(); |
| | void DenseReconstruction(); |
| |
|
| | void Render(); |
| | void RenderNow(); |
| | void RenderToggle(); |
| | void RenderOptions(); |
| | void RenderSelectedReconstruction(); |
| | void RenderClear(); |
| |
|
| | void SelectReconstructionIdx(const size_t); |
| | size_t SelectedReconstructionIdx(); |
| | bool HasSelectedReconstruction(); |
| | bool IsSelectedReconstructionValid(); |
| |
|
| | void GrabImage(); |
| | void UndistortImages(); |
| |
|
| | void ReconstructionStats(); |
| | void MatchMatrix(); |
| | void ShowLog(); |
| | void ExtractColors(); |
| |
|
| | void SetOptions(); |
| | void ResetOptions(); |
| |
|
| | void About(); |
| | void Documentation(); |
| | void Support(); |
| |
|
| | void ShowInvalidProjectError(); |
| | void UpdateTimer(); |
| |
|
| | void EnableBlockingActions(); |
| | void DisableBlockingActions(); |
| |
|
| | void UpdateWindowTitle(); |
| |
|
| | OptionManager options_; |
| |
|
| | ReconstructionManager reconstruction_manager_; |
| | std::unique_ptr<IncrementalMapperController> mapper_controller_; |
| |
|
| | Timer timer_; |
| |
|
| | ModelViewerWidget* model_viewer_widget_; |
| | ProjectWidget* project_widget_; |
| | FeatureExtractionWidget* feature_extraction_widget_; |
| | FeatureMatchingWidget* feature_matching_widget_; |
| | DatabaseManagementWidget* database_management_widget_; |
| | AutomaticReconstructionWidget* automatic_reconstruction_widget_; |
| | ReconstructionOptionsWidget* reconstruction_options_widget_; |
| | BundleAdjustmentWidget* bundle_adjustment_widget_; |
| | DenseReconstructionWidget* dense_reconstruction_widget_; |
| | RenderOptionsWidget* render_options_widget_; |
| | LogWidget* log_widget_; |
| | UndistortionWidget* undistortion_widget_; |
| | ReconstructionManagerWidget* reconstruction_manager_widget_; |
| | ReconstructionStatsWidget* reconstruction_stats_widget_; |
| | MatchMatrixWidget* match_matrix_widget_; |
| | LicenseWidget* license_widget_; |
| | ThreadControlWidget* thread_control_widget_; |
| |
|
| | QToolBar* file_toolbar_; |
| | QToolBar* preprocessing_toolbar_; |
| | QToolBar* reconstruction_toolbar_; |
| | QToolBar* render_toolbar_; |
| | QToolBar* extras_toolbar_; |
| |
|
| | QDockWidget* dock_log_widget_; |
| |
|
| | QTimer* statusbar_timer_; |
| | QLabel* statusbar_timer_label_; |
| |
|
| | QAction* action_project_new_; |
| | QAction* action_project_open_; |
| | QAction* action_project_edit_; |
| | QAction* action_project_save_; |
| | QAction* action_project_save_as_; |
| | QAction* action_import_; |
| | QAction* action_import_from_; |
| | QAction* action_export_; |
| | QAction* action_export_all_; |
| | QAction* action_export_as_; |
| | QAction* action_export_as_text_; |
| | QAction* action_quit_; |
| |
|
| | QAction* action_feature_extraction_; |
| | QAction* action_feature_matching_; |
| | QAction* action_database_management_; |
| |
|
| | QAction* action_automatic_reconstruction_; |
| |
|
| | QAction* action_reconstruction_start_; |
| | QAction* action_reconstruction_step_; |
| | QAction* action_reconstruction_pause_; |
| | QAction* action_reconstruction_reset_; |
| | QAction* action_reconstruction_finish_; |
| | QAction* action_reconstruction_normalize_; |
| | QAction* action_reconstruction_options_; |
| |
|
| | QAction* action_bundle_adjustment_; |
| | QAction* action_dense_reconstruction_; |
| |
|
| | QAction* action_render_; |
| | QAction* action_render_now_; |
| | QAction* action_render_toggle_; |
| | QAction* action_render_reset_view_; |
| | QAction* action_render_options_; |
| |
|
| | QAction* action_reconstruction_stats_; |
| | QAction* action_match_matrix_; |
| | QAction* action_log_show_; |
| | QAction* action_grab_image_; |
| | QAction* action_grab_movie_; |
| | QAction* action_undistort_; |
| | QAction* action_extract_colors_; |
| | QAction* action_set_options_; |
| | QAction* action_reset_options_; |
| |
|
| | QAction* action_about_; |
| | QAction* action_documentation_; |
| | QAction* action_support_; |
| | QAction* action_license_; |
| |
|
| | std::vector<QAction*> blocking_actions_; |
| |
|
| | |
| | bool window_closed_; |
| | }; |
| |
|
| | } |
| |
|
| | #endif |
| |
|