// ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- // The MIT License (MIT) // // Copyright (c) 2018 www.open3d.org // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. // ---------------------------------------------------------------------------- #pragma once #include "Open3D/Visualization/Visualizer/Visualizer.h" namespace open3d { namespace visualization { class SelectionPolygon; class PointCloudPicker; /// \class VisualizerWithEditing /// /// \brief Visualizer with editing capabilities. class VisualizerWithEditing : public Visualizer { public: enum class SelectionMode { None = 0, Rectangle = 1, Polygon = 2, }; public: VisualizerWithEditing(double voxel_size = -1.0, bool use_dialog = true, const std::string &directory = "") : voxel_size_(voxel_size), use_dialog_(use_dialog), default_directory_(directory) {} ~VisualizerWithEditing() override {} VisualizerWithEditing(const VisualizerWithEditing &) = delete; VisualizerWithEditing &operator=(const VisualizerWithEditing &) = delete; public: /// Function to add geometry to the scene and create corresponding shaders. /// /// \param geometry_ptr The Geometry object. bool AddGeometry(std::shared_ptr geometry_ptr, bool reset_bounding_box = true) override; void PrintVisualizerHelp() override; void UpdateWindowTitle() override; void BuildUtilities() override; int PickPoint(double x, double y); std::vector &GetPickedPoints(); protected: bool InitViewControl() override; bool InitRenderOption() override; void WindowResizeCallback(GLFWwindow *window, int w, int h) override; void MouseMoveCallback(GLFWwindow *window, double x, double y) override; void MouseScrollCallback(GLFWwindow *window, double x, double y) override; void MouseButtonCallback(GLFWwindow *window, int button, int action, int mods) override; void KeyPressCallback(GLFWwindow *window, int key, int scancode, int action, int mods) override; void InvalidateSelectionPolygon(); void InvalidatePicking(); void SaveCroppingResult(const std::string &filename = ""); protected: std::shared_ptr selection_polygon_ptr_; std::shared_ptr selection_polygon_renderer_ptr_; SelectionMode selection_mode_ = SelectionMode::None; std::shared_ptr pointcloud_picker_ptr_; std::shared_ptr pointcloud_picker_renderer_ptr_; std::shared_ptr original_geometry_ptr_; std::shared_ptr editing_geometry_ptr_; std::shared_ptr editing_geometry_renderer_ptr_; double voxel_size_ = -1.0; bool use_dialog_ = true; std::string default_directory_; unsigned int crop_action_count_ = 0; }; } // namespace visualization } // namespace open3d