Skip to content
Snippets Groups Projects
Commit edd9226a authored by Sebastian Hahta's avatar Sebastian Hahta
Browse files

URI/ID fix

parent bb9d7903
No related branches found
No related tags found
No related merge requests found
...@@ -390,7 +390,7 @@ bool Registration::findTransformations(map<string, Matrix4f> &data) { ...@@ -390,7 +390,7 @@ bool Registration::findTransformations(map<string, Matrix4f> &data) {
if (!findTransformations(T)) return false; if (!findTransformations(T)) return false;
for (size_t i = 0; i < sources_.size(); ++i) { for (size_t i = 0; i < sources_.size(); ++i) {
data[sources_[i]->getID()] = T[i]; data[sources_[i]->getURI()] = T[i];
} }
return true; return true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment