Home
last modified time | relevance | path

Searched refs:points3D_file (Results 1 – 2 of 2) sorted by relevance

/dports/misc/openmvg/openMVG-2.0/src/software/SfM/export/
H A Dmain_openMVG2Colmap.cpp287 std::ofstream points3D_file( sPoints3DFilename ); in CreatePoint3DFile() local
289 if ( ! points3D_file ) in CreatePoint3DFile()
294 points3D_file << "# 3D point list with one line of data per point:\n"; in CreatePoint3DFile()
295 points3D_file << "# POINT3D_ID, X, Y, Z, R, G, B, ERROR, TRACK[] as (IMAGE_ID, POINT2D_IDX)\n"; in CreatePoint3DFile()
296 points3D_file << "# Number of points: X, mean track length: Y\n"; in CreatePoint3DFile()
312 points3D_file << point3d_id << " " in CreatePoint3DFile()
324 points3D_file << error; in CreatePoint3DFile()
332 points3D_file << " " in CreatePoint3DFile()
336 points3D_file << "\n"; in CreatePoint3DFile()
/dports/graphics/colmap/colmap-3.6/src/base/
H A Dreconstruction.cc1145 CHECK(points3D_file.is_open()) << points3D_path; in ExportVRML()
1147 points3D_file << "#VRML V2.0 utf8\n"; in ExportVRML()
1149 points3D_file << "Shape{ appearance Appearance {\n"; in ExportVRML()
1151 points3D_file << " geometry PointSet {\n"; in ExportVRML()
1152 points3D_file << " coord Coordinate {\n"; in ExportVRML()
1153 points3D_file << " point [\n"; in ExportVRML()
1156 points3D_file << point3D.second.XYZ()(0) << ", "; in ExportVRML()
1157 points3D_file << point3D.second.XYZ()(1) << ", "; in ExportVRML()
1161 points3D_file << " ] }\n"; in ExportVRML()
1162 points3D_file << " color Color { color [\n"; in ExportVRML()
[all …]