MCPcopy Create free account
hub / github.com/SimpleITK/SimpleITK / main

Function main

Examples/SimpleIO/SimpleIO.cxx:75–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73
74
75int
76main(int argc, char * argv[])
77{
78
79 if (argc < 3)
80 {
81 std::cerr << "Usage: " << argv[0] << " <input> <output>\n";
82 return 1;
83 }
84
85 std::cout << "Running first I/O example\n";
86 example1(argv[1], argv[2]);
87
88 std::cout << "Running second I/O example\n";
89 example2(argv[1], argv[2]);
90
91 std::cout << "Running transform I/O example\n";
92 example3();
93
94 return 0;
95}

Callers

nothing calls this directly

Calls 3

example1Function · 0.70
example2Function · 0.70
example3Function · 0.70

Tested by

no test coverage detected