Drop your .ply file — we convert it to .obj right in your browser. Files never leave your computer.
Stanford Polygon format — the preferred mesh format for 3D scanning, photogrammetry, and point clouds.
Human-readable Wavefront mesh format — ubiquitous in 3D graphics, game art, and asset pipelines. Pairs with a .mtl material file.
PLY is the canonical scan / photogrammetry format (RealityCapture, Meshroom, Agisoft all export it). OBJ is the canonical DCC format. Converting lets you take a scan into Blender or ZBrush without a plugin.
OBJ has no per-vertex colour channel in the base spec. Colour data from the PLY is dropped during conversion. If you need colour, convert PLY → GLB instead (GLB stores vertex colour as a PBR attribute).
OBJ is a face-based format — it cannot represent pure point clouds. If your PLY is a raw point cloud without faces, the resulting OBJ will be empty. Mesh your scan first (Meshlab, Blender remesh, etc.) before converting.
If the PLY includes UV (most scanner exports do not), the OBJ writer emits vt lines. Textures are not moved — a companion .mtl is not generated.
No. The PLY is parsed in your browser and re-exported as OBJ locally. The file never leaves your device.