Skip to content

Commit a612a50

Browse files
committed
manual genet computing removed
1 parent ec53860 commit a612a50

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

TagLab.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1285,11 +1285,6 @@ def createMenuBar(self):
12851285
clearComparisonTable.setStatusTip("EClear Comparison Table")
12861286
clearComparisonTable.triggered.connect(self.clearComparisonTable)
12871287

1288-
1289-
computeGenets = QAction("Compute Genets", self)
1290-
computeGenets.setStatusTip("Compute genet information.")
1291-
computeGenets.triggered.connect(self.computeGenets)
1292-
12931288
exportGenetSVG = QAction("Export Genet Data As Shapes", self)
12941289
exportGenetSVG.setStatusTip("Export genets history of corals in SVG.")
12951290
exportGenetSVG.triggered.connect(self.exportGenetSVG)
@@ -1307,7 +1302,6 @@ def createMenuBar(self):
13071302
self.comparemenu.addAction(exportMatchLabels)
13081303

13091304
self.comparemenu.addSeparator()
1310-
self.comparemenu.addAction(computeGenets);
13111305
self.comparemenu.addAction(exportGenetSVG)
13121306
self.comparemenu.addAction(exportGenetCSV)
13131307

@@ -1542,17 +1536,6 @@ def switch(self):
15421536
if self.split_screen_flag:
15431537
self.toggleRGBDEM(self.viewerplus2)
15441538

1545-
@pyqtSlot()
1546-
def computeGenets(self):
1547-
1548-
img_source_index = self.comboboxSourceImage.currentIndex()
1549-
img_target_index = self.comboboxTargetImage.currentIndex()
1550-
updated_corresp = self.project.updateGenets(img_source_index, img_target_index)
1551-
if self.compare_panel.correspondences is None:
1552-
self.compare_panel.setTable(self.project, img_source_index, img_target_index)
1553-
else:
1554-
self.compare_panel.updateTable(updated_corresp)
1555-
15561539
@pyqtSlot()
15571540
def exportGenetSVG(self):
15581541
filters = "SVG (*.svg)"

0 commit comments

Comments
 (0)