From f40e7bdaf89e893092eb79b2a2879416837910ab Mon Sep 17 00:00:00 2001 From: Sameer Sheorey Date: Mon, 13 Nov 2023 09:43:05 -0800 Subject: [PATCH 1/2] Add architecture diagram to readme --- README.md | 12 ++++++++++++ cpp/open3d/t/geometry/TriangleMesh.h | 2 +- docs/getting_started.in.rst | 8 ++++---- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ea43c38ffca..100d086f94b 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,18 @@ the open-source community. - GPU acceleration for core 3D operations - Available in C++ and Python +Here's a brief overview of the different components of Open3D and how they fit +together to enable full end to end pipelines: + + + +[.](https://user-images.githubusercontent.com/41028320/282546892-3f79c61a-f721-4f8f-9866-99ecf973af69.mp4) + For more, please visit the [Open3D documentation](http://www.open3d.org/docs). ## Python quick start diff --git a/cpp/open3d/t/geometry/TriangleMesh.h b/cpp/open3d/t/geometry/TriangleMesh.h index 7828ac16b02..79a7ef89fe0 100644 --- a/cpp/open3d/t/geometry/TriangleMesh.h +++ b/cpp/open3d/t/geometry/TriangleMesh.h @@ -91,7 +91,7 @@ class LineSet; /// default and common attributes. class TriangleMesh : public Geometry, public DrawableGeometry { public: - /// Construct an empty pointcloud on the provided device. + /// Construct an empty trianglemesh on the provided device. /// \param device The device on which to initialize the trianglemesh /// (default: 'CPU:0'). TriangleMesh(const core::Device &device = core::Device("CPU:0")); diff --git a/docs/getting_started.in.rst b/docs/getting_started.in.rst index d3ffdc21956..0708e0a9ea8 100644 --- a/docs/getting_started.in.rst +++ b/docs/getting_started.in.rst @@ -13,10 +13,10 @@ Open3D Python packages are distributed via Supported Python versions: -* 3.7 * 3.8 * 3.9 * 3.10 +* 3.11 Supported operating systems: @@ -80,9 +80,9 @@ version (``HEAD`` of ``master`` branch): - `Python 3.11 `__ * - MacOS - - `Python 3.8 `__ - - `Python 3.9 `__ - - `Python 3.10 `__ + - `Python 3.8 `__ + - `Python 3.9 `__ + - `Python 3.10 `__ - `Python 3.11 `__ * - Windows From aa948df3ebad0a8cfcaa8845e95b07298beaa4b0 Mon Sep 17 00:00:00 2001 From: Sameer Sheorey Date: Mon, 13 Nov 2023 22:10:28 -0800 Subject: [PATCH 2/2] Replace video with architecture image --- README.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index 100d086f94b..a3eedc52343 100644 --- a/README.md +++ b/README.md @@ -43,14 +43,7 @@ the open-source community. Here's a brief overview of the different components of Open3D and how they fit together to enable full end to end pipelines: - - -[.](https://user-images.githubusercontent.com/41028320/282546892-3f79c61a-f721-4f8f-9866-99ecf973af69.mp4) +![Open3D_layers](https://github.com/isl-org/Open3D/assets/41028320/e9b8645a-a823-4d78-8310-e85207bbc3e4) For more, please visit the [Open3D documentation](http://www.open3d.org/docs).