Skip to content

Commit 9c9b635

Browse files
committed
f
1 parent 3efcc6f commit 9c9b635

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

glomap/exe/global_mapper.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ int RunMapper(int argc, char** argv) {
8484
std::unordered_map<track_t, Track> tracks;
8585

8686
const colmap::Database database(database_path);
87-
ConvertDatabaseToGlomap(database, view_graph, cameras, images, &image_filenames);
87+
ConvertDatabaseToGlomap(
88+
database, view_graph, cameras, images, &image_filenames);
8889

8990
if (view_graph.image_pairs.empty()) {
9091
LOG(ERROR) << "Can't continue without image pairs";

glomap/io/utils.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#include "glomap/io/utils.h"
2-
#include "colmap/util/string.h"
32

43
#include <fstream>
54

5+
#include "colmap/util/string.h"
6+
67
namespace glomap {
78
void ReadImageList(const std::string& file_path,
89
std::unordered_set<std::string>& image_filenames) {

0 commit comments

Comments
 (0)