Skip to content

Commit

Permalink
sorting indices breaks correspondence
Browse files Browse the repository at this point in the history
the indices were supposed to be sorted together, but we sorted them
separately, so now we don't know which points correspond to which
points. we do know the size of the clique, and the entire set of points
that correspond, but we don't know the individual point-point
correspondence.
  • Loading branch information
ahgamut committed Sep 4, 2024
1 parent 1b65e0c commit 4cca2ae
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/Align_Runner.java
Original file line number Diff line number Diff line change
Expand Up @@ -726,8 +726,6 @@ public void estimate() throws NotEnoughDataPointsException, IllDefinedDataPoints
/* save the backward mapping */
corr_q2k.add(new PointMatch(new mpicbg.models.Point(qc[j]), new mpicbg.models.Point(kc[j])));
}
Collections.sort(qc_ind);
Collections.sort(kc_ind);
tform_q2k.fit(corr_q2k);
tform_k2q.fit(corr_k2q);
}
Expand Down

0 comments on commit 4cca2ae

Please sign in to comment.