You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: opensplat.cpp
+16-8Lines changed: 16 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,9 @@ int main(int argc, char *argv[]){
42
42
("stop-screen-size-at", "Stop splitting gaussians that are larger than [split-screen-size] after these many steps", cxxopts::value<int>()->default_value("4000"))
43
43
("split-screen-size", "Split gaussians that are larger than this percentage of screen space", cxxopts::value<float>()->default_value("0.05"))
44
44
("colmap-image-path", "Override the default image path for COLMAP-based input", cxxopts::value<std::string>()->default_value(""))
45
+
#ifdef USE_VISUALIZATION
46
+
("has-visualization", "Show the visualization steps of training", cxxopts::value<bool>()->default_value("0"))
47
+
#endif
45
48
46
49
("h,help", "Print usage")
47
50
("version", "Print version")
@@ -92,7 +95,9 @@ int main(int argc, char *argv[]){
0 commit comments