Implemented a function to return a list of identically colored connected components from a triangle mesh using Open3D
Additions to Open3D in this project:
- solution.cpp (C++ Implementation of the task)
- solution.py (Python implementation of the task)
- results.txt (.txt file to observe the results when built and run)
After cloning this repository, follow the instructions given in the Library Documentation to build.
[NOTE] Once built, make sure to give the system specific path for test_mesh.ply and results.txt files in solution.py and solution.cpp
- A C++ function open3d::geometry::TriangleMesh::IdenticallyColoredConnectedComponents which provides with identically colored components of the mesh.
- A Python binding open3d.geometry.TriangleMesh.identically_colored_connected_components
- A C++ Unit Test