Commit e1a220fb6b95471024995a2abe447e860c56e45e
1 parent
016cfd0c
Exists in
master
remove FRE estimation after ICP
calculate the FRE after ICP make no sense. Is there a way to quantify the new error?
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
invesalius/gui/task_navigator.py
@@ -851,8 +851,9 @@ class NeuronavigationPanel(wx.Panel): | @@ -851,8 +851,9 @@ class NeuronavigationPanel(wx.Panel): | ||
851 | 851 | ||
852 | if dlg.ICPcorregistration(fre): | 852 | if dlg.ICPcorregistration(fre): |
853 | m_icp = self.OnICP() | 853 | m_icp = self.OnICP() |
854 | - fre = db.calculate_fre(self.fiducials_raw, self.fiducials, self.ref_mode_id, m_change, m_icp) | ||
855 | - self.UpdateFRE(fre) | 854 | + # calculate the FRE after ICP make no sense. Is there a way to quantify the new error? |
855 | + #fre = db.calculate_fre(self.fiducials_raw, self.fiducials, self.ref_mode_id, m_change, m_icp) | ||
856 | + #self.UpdateFRE(fre) | ||
856 | 857 | ||
857 | def ResetImageFiducials(self): | 858 | def ResetImageFiducials(self): |
858 | for m in range(0, 3): | 859 | for m in range(0, 3): |