MCPcopy Create free account
hub / github.com/ColmapView/Colmapview.github.io / exportPointsPLY

Function exportPointsPLY

src/parsers/writers.ts:146–152  ·  view source on GitHub ↗
(
  reconstruction: Reconstruction,
  wasmReconstruction?: WasmReconstructionWrapper | null
)

Source from the content-addressed store, hash-verified

144 * @param wasmReconstruction - Optional WASM wrapper (used to build points3D if not in reconstruction)
145 */
146export function exportPointsPLY(
147 reconstruction: Reconstruction,
148 wasmReconstruction?: WasmReconstructionWrapper | null
149): void {
150 const points3D = getPoints3DForExport(reconstruction, wasmReconstruction);
151 exportPointsPLYFile(() => writePointsPLY(points3D));
152}
153
154function createReconstructionZipFileWriters(
155 reconstruction: Reconstruction,

Callers

nothing calls this directly

Calls 3

getPoints3DForExportFunction · 0.90
exportPointsPLYFileFunction · 0.90
writePointsPLYFunction · 0.90

Tested by

no test coverage detected