-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f1018d
commit e4be06c
Showing
3 changed files
with
30 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
{ | ||
"µnet" : "https://dev.mri.cnrs.fr/attachments/download/3574/%C2%B5net.zip", | ||
"µyolo": "https://dev.mri.cnrs.fr/attachments/download/3575/%C2%B5yolo.zip" | ||
"µnet" : { | ||
"url": "https://dev.mri.cnrs.fr/attachments/download/3574/%C2%B5net.zip", | ||
"version": 208 | ||
}, | ||
"µyolo": { | ||
"url": "https://dev.mri.cnrs.fr/attachments/download/3575/%C2%B5yolo.zip", | ||
"version": 51 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from qtpy.QtCore import QObject | ||
from PyQt5.QtCore import pyqtSignal | ||
|
||
class QtSegmentProtoplasts(QObject): | ||
|
||
finished = pyqtSignal() | ||
update = pyqtSignal(str, int, int) | ||
|
||
def _probe_model(self, model): | ||
pass | ||
|
||
def __init__(self, pbr, mga): | ||
super().__init__() | ||
self.pbr = pbr | ||
self.mga = mga | ||
|
||
def run(self): | ||
self.mga.find_traps() | ||
self.mga.process_patches() | ||
self.finished.emit() |