Fixed compile issue
parent
0ff7854f15
commit
018fbf720f
|
@ -719,7 +719,7 @@ bool readBAL(const string& filename, SfM_data &data) {
|
||||||
size_t i = 0, j = 0;
|
size_t i = 0, j = 0;
|
||||||
float u, v;
|
float u, v;
|
||||||
is >> i >> j >> u >> v;
|
is >> i >> j >> u >> v;
|
||||||
data.tracks[j].emplace_back(i, Point2(u, -v));
|
data.tracks[j].measurements.emplace_back(i, Point2(u, -v));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the information for the camera poses
|
// Get the information for the camera poses
|
||||||
|
|
Loading…
Reference in New Issue