Web Application for 3D data Conversion, Processing, and Visualization. Backend is mainly built with Python, Flask, and Open3D. Frontend is mainly built with Typescript, React, and Three.js.
Currently we're using PointsMaterial with color="white" and size=0.12 for point clouds and matcap texture for meshes.
However,
xyzrgb is storing RGB colors (they be accessed with geometry.attributes.color). Unfortunately, the colors might be in the wrong format, so there must be some additional checks.
pcd can store Material and Material[].
PLYLoader is only returning BufferGeometry, but ply is capable of storing materials so there needs to be additional research.
Currently we're using
PointsMaterial
withcolor="white"
andsize=0.12
for point clouds andmatcap
texture for meshes. However,xyzrgb
is storing RGB colors (they be accessed withgeometry.attributes.color
). Unfortunately, the colors might be in the wrong format, so there must be some additional checks.pcd
can storeMaterial
andMaterial[]
.PLYLoader
is only returningBufferGeometry
, butply
is capable of storing materials so there needs to be additional research.